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

26 lines
775 B
Nginx Configuration File
Raw Normal View History

2022-08-31 04:21:17 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
2020-12-24 12:11:42 +01:00
location __PATH__/ {
2022-08-31 02:25:01 +02:00
proxy_pass http://127.0.0.1:__PORT_API_GATEWAY__/;
proxy_http_version 1.1;
2024-01-15 23:21:30 +01:00
proxy_set_header Host $host;
2022-08-31 02:25:01 +02:00
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
2021-07-06 15:51:24 +02:00
}
2020-01-18 10:28:47 +01:00
2024-05-02 08:46:43 +02:00
location = __PATH__/ {
default_type text/plain;
return 200 "This is where Standard Notes - Syncing Server is installed.";
}
2022-08-04 17:28:39 +02:00
location __PATH__/files/ {
2022-08-31 02:25:01 +02:00
proxy_pass http://127.0.0.1:__PORT_FILES__/;
proxy_http_version 1.1;
2024-01-15 23:21:30 +01:00
proxy_set_header Host $host;
2022-08-31 02:25:01 +02:00
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
2021-07-06 01:37:20 +02:00
}