2013-08-14 02:00:20 +08:00
|
|
|
# Additional MIME types that you'd like nginx to handle go in here
|
|
|
|
types {
|
2014-05-14 13:08:29 +08:00
|
|
|
text/csv csv;
|
2021-06-23 23:31:12 +08:00
|
|
|
application/wasm wasm;
|
2013-08-14 02:00:20 +08:00
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
upstream discourse {
|
2020-06-18 23:30:08 +08:00
|
|
|
server unix:/var/www/discourse/tmp/sockets/nginx.http.sock;
|
2020-09-30 23:59:46 +08:00
|
|
|
server unix:/var/www/discourse/tmp/sockets/nginx.https.sock;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
2019-11-07 09:12:24 +08:00
|
|
|
# inactive means we keep stuff around for 1440m minutes regardless of last access (1 week)
|
2021-05-21 09:43:47 +08:00
|
|
|
# levels means it is a 2 deep hierarchy cause we can have lots of files
|
2019-11-07 09:12:24 +08:00
|
|
|
# max_size limits the size of the cache
|
|
|
|
proxy_cache_path /var/nginx/cache inactive=1440m levels=1:2 keys_zone=one:10m max_size=600m;
|
2014-07-15 08:30:27 +08:00
|
|
|
|
2022-10-11 22:33:07 +08:00
|
|
|
# Increased from the default value to acommodate large cookies during oAuth2 flows
|
|
|
|
# like in https://meta.discourse.org/t/x/74060 and large CSP and Link (preload) headers
|
2022-11-07 23:11:06 +08:00
|
|
|
proxy_buffer_size 32k;
|
|
|
|
proxy_buffers 4 32k;
|
|
|
|
|
|
|
|
# Increased from the default value to allow for a large volume of cookies in request headers
|
|
|
|
# Discourse itself tries to minimise cookie size, but we cannot control other cookies set by other tools on the same domain.
|
|
|
|
large_client_header_buffers 4 32k;
|
2017-12-11 06:29:47 +08:00
|
|
|
|
2014-01-09 13:39:30 +08:00
|
|
|
# attempt to preserve the proto, must be in http context
|
|
|
|
map $http_x_forwarded_proto $thescheme {
|
|
|
|
default $scheme;
|
2022-12-30 20:35:26 +08:00
|
|
|
"~https$" https;
|
2014-01-09 13:39:30 +08:00
|
|
|
}
|
|
|
|
|
2021-01-27 05:03:20 +08:00
|
|
|
log_format log_discourse '[$time_local] "$http_host" $remote_addr "$request" "$http_user_agent" "$sent_http_x_discourse_route" $status $bytes_sent "$http_referer" $upstream_response_time $request_time "$upstream_http_x_discourse_username" "$upstream_http_x_discourse_trackview" "$upstream_http_x_queue_time" "$upstream_http_x_redis_calls" "$upstream_http_x_redis_time" "$upstream_http_x_sql_calls" "$upstream_http_x_sql_time"';
|
2015-06-16 09:37:08 +08:00
|
|
|
|
2021-05-26 06:39:31 +08:00
|
|
|
# Allow bypass cache from localhost
|
|
|
|
geo $bypass_cache {
|
|
|
|
default 0;
|
|
|
|
127.0.0.1 1;
|
|
|
|
::1 1;
|
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
server {
|
|
|
|
|
2015-06-16 09:37:08 +08:00
|
|
|
access_log /var/log/nginx/access.log log_discourse;
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
listen 80;
|
|
|
|
gzip on;
|
2014-10-23 08:05:42 +08:00
|
|
|
gzip_vary on;
|
2013-02-06 03:16:51 +08:00
|
|
|
gzip_min_length 1000;
|
2014-07-08 14:45:18 +08:00
|
|
|
gzip_comp_level 5;
|
2021-06-23 23:31:12 +08:00
|
|
|
gzip_types application/json text/css text/javascript application/x-javascript application/javascript image/svg+xml application/wasm;
|
2018-01-09 10:28:05 +08:00
|
|
|
gzip_proxied any;
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2015-01-17 17:26:21 +08:00
|
|
|
# Uncomment and configure this section for HTTPS support
|
|
|
|
# NOTE: Put your ssl cert in your main nginx config directory (/etc/nginx)
|
|
|
|
#
|
|
|
|
# rewrite ^/(.*) https://enter.your.web.hostname.here/$1 permanent;
|
|
|
|
#
|
|
|
|
# listen 443 ssl;
|
|
|
|
# ssl_certificate your-hostname-cert.pem;
|
|
|
|
# ssl_certificate_key your-hostname-cert.key;
|
|
|
|
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
|
|
# ssl_ciphers HIGH:!aNULL:!MD5;
|
|
|
|
#
|
|
|
|
|
2013-05-29 12:07:26 +08:00
|
|
|
server_name enter.your.web.hostname.here;
|
2014-05-14 13:08:29 +08:00
|
|
|
server_tokens off;
|
2013-03-01 00:24:03 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
sendfile on;
|
|
|
|
|
|
|
|
keepalive_timeout 65;
|
2013-09-07 01:18:42 +08:00
|
|
|
|
|
|
|
# maximum file upload size (keep up to date when changing the corresponding site setting)
|
2015-02-23 07:50:09 +08:00
|
|
|
client_max_body_size 10m;
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-09-07 01:18:42 +08:00
|
|
|
# path to discourse's public directory
|
|
|
|
set $public /var/www/discourse/public;
|
|
|
|
|
2014-07-10 13:18:31 +08:00
|
|
|
# without weak etags we get zero benefit from etags on dynamically compressed content
|
|
|
|
# further more etags are based on the file in nginx not sha of data
|
|
|
|
# use dates, it solves the problem fine even cross server
|
|
|
|
etag off;
|
2014-12-09 11:49:02 +08:00
|
|
|
|
2014-12-03 19:47:28 +08:00
|
|
|
# prevent direct download of backups
|
|
|
|
location ^~ /backups/ {
|
|
|
|
internal;
|
|
|
|
}
|
2014-07-10 13:18:31 +08:00
|
|
|
|
2015-12-21 20:13:56 +08:00
|
|
|
# bypass rails stack with a cheap 204 for favicon.ico requests
|
2015-11-17 16:34:05 +08:00
|
|
|
location /favicon.ico {
|
2015-12-21 20:13:56 +08:00
|
|
|
return 204;
|
2015-12-21 20:14:36 +08:00
|
|
|
access_log off;
|
|
|
|
log_not_found off;
|
2015-11-17 16:34:05 +08:00
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
location / {
|
2013-09-07 01:18:42 +08:00
|
|
|
root $public;
|
2014-07-10 13:18:31 +08:00
|
|
|
add_header ETag "";
|
2014-01-09 09:36:42 +08:00
|
|
|
|
2016-01-08 12:46:52 +08:00
|
|
|
# auth_basic on;
|
|
|
|
# auth_basic_user_file /etc/nginx/htpasswd;
|
|
|
|
|
2019-05-29 18:18:17 +08:00
|
|
|
location ~ ^/uploads/short-url/ {
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-09-29 07:24:33 +08:00
|
|
|
location ~ ^/(secure-media-uploads/|secure-uploads)/ {
|
2020-01-31 10:45:02 +08:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-09-30 23:59:46 +08:00
|
|
|
location ~* (fonts|assets|plugins|uploads)/.*\.(eot|ttf|woff|woff2|ico|otf)$ {
|
2014-02-13 12:36:51 +08:00
|
|
|
expires 1y;
|
2017-02-24 06:37:53 +08:00
|
|
|
add_header Cache-Control public,immutable;
|
2021-02-25 05:27:37 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2019-05-29 18:18:17 +08:00
|
|
|
}
|
2013-09-07 01:18:42 +08:00
|
|
|
|
2015-07-03 23:43:33 +08:00
|
|
|
location = /srv/status {
|
|
|
|
access_log off;
|
|
|
|
log_not_found off;
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2018-03-26 13:29:20 +08:00
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
2015-07-03 23:43:33 +08:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-01-09 09:38:15 +08:00
|
|
|
# some minimal caching here so we don't keep asking
|
2021-05-21 09:43:47 +08:00
|
|
|
# longer term we should increase probably to 1y
|
2018-01-09 09:38:15 +08:00
|
|
|
location ~ ^/javascripts/ {
|
|
|
|
expires 1d;
|
|
|
|
add_header Cache-Control public,immutable;
|
2021-02-25 05:27:37 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2018-01-09 09:38:15 +08:00
|
|
|
}
|
|
|
|
|
2017-03-21 00:11:14 +08:00
|
|
|
location ~ ^/assets/(?<asset_path>.+)$ {
|
2013-09-07 01:18:42 +08:00
|
|
|
expires 1y;
|
2014-07-10 13:18:31 +08:00
|
|
|
# asset pipeline enables this
|
2019-04-11 10:41:16 +08:00
|
|
|
brotli_static on;
|
2014-07-08 14:45:18 +08:00
|
|
|
gzip_static on;
|
2017-02-24 06:37:53 +08:00
|
|
|
add_header Cache-Control public,immutable;
|
2017-03-21 00:11:14 +08:00
|
|
|
# HOOK in asset location (used for extensibility)
|
2014-12-09 11:49:02 +08:00
|
|
|
# TODO I don't think this break is needed, it just breaks out of rewrite
|
2013-09-07 01:18:42 +08:00
|
|
|
break;
|
2013-08-14 18:20:05 +08:00
|
|
|
}
|
|
|
|
|
2014-12-09 11:49:02 +08:00
|
|
|
location ~ ^/plugins/ {
|
|
|
|
expires 1y;
|
2017-02-24 06:37:53 +08:00
|
|
|
add_header Cache-Control public,immutable;
|
2021-02-25 05:27:37 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2014-12-09 11:49:02 +08:00
|
|
|
}
|
2015-01-17 17:26:21 +08:00
|
|
|
|
2014-12-28 18:10:03 +08:00
|
|
|
# cache emojis
|
2017-07-21 06:22:59 +08:00
|
|
|
location ~ /images/emoji/ {
|
2014-12-28 18:10:03 +08:00
|
|
|
expires 1y;
|
2017-02-24 06:37:53 +08:00
|
|
|
add_header Cache-Control public,immutable;
|
2021-02-25 05:27:37 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2014-12-28 18:10:03 +08:00
|
|
|
}
|
2014-12-09 11:49:02 +08:00
|
|
|
|
2013-09-07 01:18:42 +08:00
|
|
|
location ~ ^/uploads/ {
|
2014-07-14 12:26:25 +08:00
|
|
|
|
|
|
|
# NOTE: it is really annoying that we can't just define headers
|
|
|
|
# at the top level and inherit.
|
|
|
|
#
|
|
|
|
# proxy_set_header DOES NOT inherit, by design, we must repeat it,
|
|
|
|
# otherwise headers are not set correctly
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2018-03-26 13:29:20 +08:00
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
2014-07-14 12:26:25 +08:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
2014-07-11 16:47:55 +08:00
|
|
|
proxy_set_header X-Sendfile-Type X-Accel-Redirect;
|
|
|
|
proxy_set_header X-Accel-Mapping $public/=/downloads/;
|
2013-02-06 03:16:51 +08:00
|
|
|
expires 1y;
|
2017-02-24 06:37:53 +08:00
|
|
|
add_header Cache-Control public,immutable;
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-09-07 01:18:42 +08:00
|
|
|
## optional upload anti-hotlinking rules
|
|
|
|
#valid_referers none blocked mysite.com *.mysite.com;
|
2014-02-13 12:36:51 +08:00
|
|
|
#if ($invalid_referer) { return 403; }
|
2013-03-01 00:24:03 +08:00
|
|
|
|
2013-10-01 23:52:04 +08:00
|
|
|
# custom CSS
|
2014-05-14 13:08:29 +08:00
|
|
|
location ~ /stylesheet-cache/ {
|
2021-02-18 11:11:13 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2014-05-14 13:08:29 +08:00
|
|
|
try_files $uri =404;
|
|
|
|
}
|
2014-07-14 12:26:25 +08:00
|
|
|
# this allows us to bypass rails
|
2023-05-25 03:13:36 +08:00
|
|
|
location ~* \.(gif|png|jpg|jpeg|bmp|tif|tiff|ico||avif)$ {
|
2021-02-18 11:11:13 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2014-05-14 13:08:29 +08:00
|
|
|
try_files $uri =404;
|
|
|
|
}
|
2020-07-09 11:31:48 +08:00
|
|
|
# SVG needs an extra header attached
|
|
|
|
location ~* \.(svg)$ {
|
|
|
|
}
|
2013-10-01 23:52:04 +08:00
|
|
|
# thumbnails & optimized images
|
2015-05-19 18:31:12 +08:00
|
|
|
location ~ /_?optimized/ {
|
2021-02-18 11:11:13 +08:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2014-05-14 13:08:29 +08:00
|
|
|
try_files $uri =404;
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
2013-03-01 00:24:03 +08:00
|
|
|
|
2014-09-24 14:51:14 +08:00
|
|
|
location ~ ^/admin/backups/ {
|
2014-07-15 08:30:27 +08:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2018-03-26 13:29:20 +08:00
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
2014-07-15 08:30:27 +08:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
|
|
|
proxy_set_header X-Sendfile-Type X-Accel-Redirect;
|
|
|
|
proxy_set_header X-Accel-Mapping $public/=/downloads/;
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:26:25 +08:00
|
|
|
# This big block is needed so we can selectively enable
|
2019-02-16 01:45:09 +08:00
|
|
|
# acceleration for backups, avatars, sprites and so on.
|
2014-07-14 12:26:25 +08:00
|
|
|
# see note about repetition above
|
2019-02-16 01:45:09 +08:00
|
|
|
location ~ ^/(svg-sprite/|letter_avatar/|letter_avatar_proxy/|user_avatar|highlight-js|stylesheets|theme-javascripts|favicon/proxied|service-worker) {
|
2014-07-14 12:26:25 +08:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2018-03-26 13:29:20 +08:00
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
2014-07-14 12:26:25 +08:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
2015-05-22 12:23:47 +08:00
|
|
|
|
|
|
|
# if Set-Cookie is in the response nothing gets cached
|
|
|
|
# this is double bad cause we are not passing last modified in
|
|
|
|
proxy_ignore_headers "Set-Cookie";
|
2015-05-22 13:57:32 +08:00
|
|
|
proxy_hide_header "Set-Cookie";
|
2018-04-11 09:02:03 +08:00
|
|
|
proxy_hide_header "X-Discourse-Username";
|
|
|
|
proxy_hide_header "X-Runtime";
|
2015-05-22 12:23:47 +08:00
|
|
|
|
2014-07-15 08:30:27 +08:00
|
|
|
# note x-accel-redirect can not be used with proxy_cache
|
|
|
|
proxy_cache one;
|
2018-04-11 09:02:03 +08:00
|
|
|
proxy_cache_key "$scheme,$host,$request_uri";
|
2014-07-15 08:30:27 +08:00
|
|
|
proxy_cache_valid 200 301 302 7d;
|
2021-05-26 06:39:31 +08:00
|
|
|
proxy_cache_bypass $bypass_cache;
|
2014-02-13 12:36:51 +08:00
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-01-04 13:13:44 +08:00
|
|
|
# we need buffering off for message bus
|
2016-01-04 06:56:30 +08:00
|
|
|
location /message-bus/ {
|
2018-03-26 13:29:20 +08:00
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
2016-01-04 13:13:44 +08:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
|
|
|
proxy_http_version 1.1;
|
2016-01-04 06:56:30 +08:00
|
|
|
proxy_buffering off;
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:26:25 +08:00
|
|
|
# this means every file in public is tried first
|
2013-09-07 01:18:42 +08:00
|
|
|
try_files $uri @discourse;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /downloads/ {
|
|
|
|
internal;
|
|
|
|
alias $public/;
|
|
|
|
}
|
|
|
|
|
|
|
|
location @discourse {
|
2014-03-25 14:06:15 +08:00
|
|
|
proxy_set_header Host $http_host;
|
2018-03-26 13:29:20 +08:00
|
|
|
proxy_set_header X-Request-Start "t=${msec}";
|
2014-03-25 14:06:15 +08:00
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
2013-09-07 01:18:42 +08:00
|
|
|
proxy_pass http://discourse;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|