reverse proxy - allow all chars for URL settings

This commit is contained in:
bunkerity 2023-04-03 15:06:58 +02:00
parent 6a65104e7f
commit c843be074c
2 changed files with 3 additions and 3 deletions

View File

@ -182,7 +182,7 @@ A file named **plugin.json** and written at the root of the plugin folder must c
"regex": "^.*$",
"type": "text"
}
}
},
"jobs": [
{
"name": "my-job",
@ -428,4 +428,4 @@ def myplugin() :
!!! info "Python libraries"
You can use Python libraries that are already available like :
`Flask`, `Flask-Login`, `Flask-WTF`, `beautifulsoup4`, `docker`, `Jinja2`, `python-magic` and `requests`. To see the full list, you can have a look at the Web UI [requirements.txt](https://github.com/bunkerity/bunkerweb/blob/master/ui/requirements.txt). If you need external libraries, you can install them inside the **ui** folder of your plugin and then use the classical **import** directive.
`Flask`, `Flask-Login`, `Flask-WTF`, `beautifulsoup4`, `docker`, `Jinja2`, `python-magic` and `requests`. To see the full list, you can have a look at the Web UI [requirements.txt](https://github.com/bunkerity/bunkerweb/blob/master/ui/requirements.txt). If you need external libraries, you can install them inside the **ui** folder of your plugin and then use the classical **import** directive.

View File

@ -39,7 +39,7 @@
"help": "Location URL that will be proxied.",
"id": "reverse-proxy-url",
"label": "Reverse proxy url",
"regex": "^(/[\\w\\].~:/?#[@!$&'()*+,;=-]*)?$",
"regex": "^.*$",
"type": "text",
"multiple": "reverse-proxy"
},