1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/coin_ynh.git synced 2024-09-03 18:16:26 +02:00

Fix nginx conf ...

This commit is contained in:
Alexandre Aubin 2019-08-24 19:10:34 +02:00
parent 40a1084f4a
commit 2b85035f3e

View file

@ -1,30 +1,31 @@
location PATHTOCHANGE { #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
if ($scheme = http) { location __PATH__/ {
rewrite ^ https://$server_name$request_uri? permanent; if ($scheme = http) {
} rewrite ^ https://$server_name$request_uri? permanent;
try_files $uri @YNH_APP_INSTANCE_NAME; }
} try_files $uri @__NAME__;
location /protected/ { }
internal; location __PATH__/protected/ {
alias /opt/YNH_APP_INSTANCE_NAME/YNH_APP_INSTANCE_NAME/smedia/; internal;
} alias /opt/__NAME__/__NAME__/smedia/;
}
location PATHTOCHANGEmedia {
alias /opt/YNH_APP_INSTANCE_NAME/media; location __PATH__/media {
} alias /opt/__NAME__/media;
}
location PATHTOCHANGEstatic {
alias /opt/YNH_APP_INSTANCE_NAME/static; location __PATH__/static {
} alias /opt/__NAME__/static;
}
location PATHTOCHANGEassets {
alias /opt/YNH_APP_INSTANCE_NAME/static; location __PATH__/assets {
} alias /opt/__NAME__/static;
}
location @YNH_APP_INSTANCE_NAME {
proxy_set_header Host $host; location @__NAME__ {
proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://unix:/opt/YNH_APP_INSTANCE_NAME/sock; proxy_set_header X-Forwarded-Proto $scheme;
} proxy_pass http://unix:/opt/__NAME__/sock;
}