2023-02-19 00:30:11 +01:00
|
|
|
location __PATH__/ {
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2022-03-14 02:31:07 +01:00
|
|
|
proxy_http_version 1.1;
|
2023-09-11 19:18:27 +02:00
|
|
|
proxy_set_header Host $host;
|
2022-03-14 02:31:07 +01:00
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2023-09-11 19:18:27 +02:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
2022-03-14 02:31:07 +01:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2021-08-15 21:48:06 +02:00
|
|
|
|
2024-02-09 00:21:39 +01:00
|
|
|
proxy_pass http://127.0.0.1:__PORT__/;
|
2022-03-14 02:31:07 +01:00
|
|
|
|
2022-03-26 00:21:52 +01:00
|
|
|
client_max_body_size __CLIENT_MAX_BODY_SIZE__;
|
2022-03-13 05:19:51 +01:00
|
|
|
|
2021-08-15 21:48:06 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2023-09-11 17:39:20 +02:00
|
|
|
|
|
|
|
|
2023-09-11 22:25:48 +02:00
|
|
|
# fix "[warn] could not build optimal proxy_headers_hash error"
|
|
|
|
proxy_headers_hash_max_size 512;
|
|
|
|
proxy_headers_hash_bucket_size 128;
|
|
|
|
|
|
|
|
|
2023-09-11 19:18:27 +02:00
|
|
|
# media caching stuff
|
|
|
|
# https://docs.gotosocial.org/en/latest/advanced/caching/assets-media/#nginx
|
|
|
|
location /assets/ {
|
2024-01-16 03:25:27 +01:00
|
|
|
alias __INSTALL_DIR__/web/assets/;
|
2023-09-11 19:18:27 +02:00
|
|
|
autoindex off;
|
2023-09-11 23:25:56 +02:00
|
|
|
# 300 = 5 minutes
|
|
|
|
more_set_headers "Cache-control: public, max-age=300";
|
2023-09-11 19:18:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
location /fileserver/ {
|
2023-09-11 22:25:48 +02:00
|
|
|
alias /home/yunohost.app/__APP__/;
|
2023-09-11 19:18:27 +02:00
|
|
|
autoindex off;
|
2023-09-11 23:25:56 +02:00
|
|
|
# 604800 = 1 week
|
|
|
|
more_set_headers "Cache-Control: private, immutable, max-age=604800";
|
2023-09-11 19:18:27 +02:00
|
|
|
try_files $uri @fileserver;
|
|
|
|
}
|
2023-09-11 17:39:20 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
location @fileserver {
|
2023-09-11 19:18:27 +02:00
|
|
|
proxy_pass http://127.0.0.1:__PORT__;
|
2023-09-11 17:39:20 +02:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
}
|