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
|
|
|
|
2021-07-06 15:51:24 +02:00
|
|
|
location = __PATH__/ {
|
2022-08-31 02:25:01 +02:00
|
|
|
default_type text/plain;
|
|
|
|
return 200 "This is where Standard Notes - Syncing Server is installed.";
|
2021-07-11 14:10:21 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|