1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/snserver_ynh.git synced 2024-09-03 20:26:22 +02:00
snserver_ynh/conf/nginx.conf

18 lines
536 B
Nginx Configuration File
Raw Normal View History

2020-12-24 12:11:42 +01:00
location __PATH__/ {
alias __FINALPATH__/live/public ;
2020-01-18 10:28:47 +01:00
2020-12-24 12:11:42 +01:00
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2020-01-18 10:28:47 +01:00
2020-12-27 23:18:55 +01:00
proxy_pass http://127.0.0.1:__PORT____PATH__/;
2020-12-24 12:11:42 +01:00
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
2020-01-18 10:28:47 +01:00
2021-01-24 18:06:51 +01:00
more_set_headers "Content-Security-Policy: frame-ancestors 'self' __ACCESS_DOMAIN__";
2020-01-18 10:28:47 +01:00
}