2018-09-24 14:46:05 +00:00
|
|
|
map $http_upgrade $connection_upgrade {
|
|
|
|
default upgrade;
|
|
|
|
'' close;
|
|
|
|
}
|
|
|
|
|
2020-03-08 15:04:25 +00:00
|
|
|
upstream backend {
|
|
|
|
server 127.0.0.1:3000 fail_timeout=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
upstream streaming {
|
2023-08-07 13:41:34 +00:00
|
|
|
# Instruct nginx to send connections to the server with the least number of connections
|
|
|
|
# to ensure load is distributed evenly.
|
|
|
|
least_conn;
|
|
|
|
|
2020-03-08 15:04:25 +00:00
|
|
|
server 127.0.0.1:4000 fail_timeout=0;
|
2023-08-07 13:41:34 +00:00
|
|
|
# Uncomment these lines for load-balancing multiple instances of streaming for scaling,
|
|
|
|
# this assumes your running the streaming server on ports 4000, 4001, and 4002:
|
|
|
|
# server 127.0.0.1:4001 fail_timeout=0;
|
|
|
|
# server 127.0.0.1:4002 fail_timeout=0;
|
2020-03-08 15:04:25 +00:00
|
|
|
}
|
|
|
|
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=CACHE:10m inactive=7d max_size=1g;
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
server_name example.com;
|
|
|
|
root /home/mastodon/live/public;
|
|
|
|
location /.well-known/acme-challenge/ { allow all; }
|
|
|
|
location / { return 301 https://$host$request_uri; }
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name example.com;
|
|
|
|
|
2019-08-30 05:42:50 +00:00
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
2023-08-31 10:17:10 +00:00
|
|
|
|
|
|
|
# You can use https://ssl-config.mozilla.org/ to generate your cipher set.
|
|
|
|
# We recommend their "Intermediate" level.
|
|
|
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
|
|
|
|
|
2018-09-24 14:46:05 +00:00
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_session_cache shared:SSL:10m;
|
2021-08-20 07:15:07 +00:00
|
|
|
ssl_session_tickets off;
|
2018-09-24 14:46:05 +00:00
|
|
|
|
|
|
|
# Uncomment these lines once you acquire a certificate:
|
|
|
|
# ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
|
|
|
|
# ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
|
|
|
|
|
|
|
|
keepalive_timeout 70;
|
|
|
|
sendfile on;
|
2023-03-25 09:00:03 +00:00
|
|
|
client_max_body_size 99m;
|
2018-09-24 14:46:05 +00:00
|
|
|
|
|
|
|
root /home/mastodon/live/public;
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
gzip_disable "msie6";
|
|
|
|
gzip_vary on;
|
|
|
|
gzip_proxied any;
|
|
|
|
gzip_comp_level 6;
|
|
|
|
gzip_buffers 16 8k;
|
|
|
|
gzip_http_version 1.1;
|
2022-02-26 16:27:11 +00:00
|
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml image/x-icon;
|
2018-09-24 14:46:05 +00:00
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri @proxy;
|
|
|
|
}
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
# If Docker is used for deployment and Rails serves static files,
|
|
|
|
# then needed must replace line `try_files $uri =404;` with `try_files $uri @proxy;`.
|
2022-11-09 03:12:57 +00:00
|
|
|
location = /sw.js {
|
2022-10-29 13:06:23 +00:00
|
|
|
add_header Cache-Control "public, max-age=604800, must-revalidate";
|
2022-10-27 14:58:49 +00:00
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
2022-10-29 13:06:23 +00:00
|
|
|
try_files $uri =404;
|
2018-09-24 14:46:05 +00:00
|
|
|
}
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
location ~ ^/assets/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
2022-10-27 14:58:49 +00:00
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
2022-10-29 13:06:23 +00:00
|
|
|
try_files $uri =404;
|
2018-09-24 14:46:05 +00:00
|
|
|
}
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
location ~ ^/avatars/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/emoji/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/headers/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/packs/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/shortcuts/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/sounds/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, must-revalidate";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ^/system/ {
|
|
|
|
add_header Cache-Control "public, max-age=2419200, immutable";
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
2023-07-06 12:31:37 +00:00
|
|
|
add_header X-Content-Type-Options nosniff;
|
|
|
|
add_header Content-Security-Policy "default-src 'none'; form-action 'none'";
|
2022-10-29 13:06:23 +00:00
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
2022-11-07 02:16:44 +00:00
|
|
|
location ^~ /api/v1/streaming {
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2021-01-05 21:25:07 +00:00
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_set_header Proxy "";
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
proxy_pass http://streaming;
|
|
|
|
proxy_buffering off;
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection $connection_upgrade;
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
2018-09-24 14:46:05 +00:00
|
|
|
|
|
|
|
tcp_nodelay on;
|
|
|
|
}
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
location @proxy {
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2021-01-05 21:25:07 +00:00
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_set_header Proxy "";
|
2022-10-29 13:06:23 +00:00
|
|
|
proxy_pass_header Server;
|
2018-09-24 14:46:05 +00:00
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
proxy_pass http://backend;
|
|
|
|
proxy_buffering on;
|
2018-09-24 14:46:05 +00:00
|
|
|
proxy_redirect off;
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection $connection_upgrade;
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
proxy_cache CACHE;
|
|
|
|
proxy_cache_valid 200 7d;
|
|
|
|
proxy_cache_valid 410 24h;
|
|
|
|
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
|
|
|
|
add_header X-Cached $upstream_cache_status;
|
|
|
|
|
2018-09-24 14:46:05 +00:00
|
|
|
tcp_nodelay on;
|
|
|
|
}
|
|
|
|
|
2022-10-29 13:06:23 +00:00
|
|
|
error_page 404 500 501 502 503 504 /500.html;
|
2018-09-24 14:46:05 +00:00
|
|
|
}
|