mirror of
https://github.com/YunoHost-Apps/dex_ynh.git
synced 2024-09-03 18:26:22 +02:00
Fix linter warning
This commit is contained in:
parent
663472e4f5
commit
6c1c70a697
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
rewrite ^__PATH__$ __PATH__/;
|
rewrite ^__PATH__$ __PATH__/;
|
||||||
location ~ __PATH__/$ {
|
location ~ ^__PATH__/$ {
|
||||||
|
|
||||||
default_type text/plain;
|
default_type text/plain;
|
||||||
return 200 "This is where Dex is installed.";
|
return 200 "This is where Dex is installed.";
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ __PATH__/.+ {
|
location ~ ^__PATH__/.+ {
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:__PORT__;
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
proxy_redirect off;
|
proxy_redirect off;
|
||||||
|
|
Loading…
Add table
Reference in a new issue