1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nitter_ynh.git synced 2024-09-03 19:46:24 +02:00
nitter_ynh/conf/nginx.conf

27 lines
713 B
Nginx Configuration File
Raw Normal View History

2021-03-18 04:45:54 +01:00
location / {
2021-03-16 23:36:39 +01:00
# Path to source
2021-03-18 04:45:54 +01:00
alias __FINALPATH__/public/ ;
2021-03-16 23:36:39 +01:00
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2021-03-18 04:45:54 +01:00
try_files $uri @proxy_to_app;
}
2021-03-16 23:36:39 +01:00
2021-03-18 04:45:54 +01:00
location @proxy_to_app {
proxy_pass http://127.0.0.1:__PORT__;
proxy_redirect off;
proxy_set_header Host $host;
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_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Port $server_port;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
2021-03-16 23:36:39 +01:00
}