2013-08-13 14:00:20 -04:00
|
|
|
# Additional MIME types that you'd like nginx to handle go in here
|
|
|
|
types {
|
|
|
|
text/csv csv;
|
|
|
|
}
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
upstream discourse {
|
2013-08-07 00:06:40 -04:00
|
|
|
server unix:/var/www/discourse/tmp/sockets/thin.0.sock;
|
|
|
|
server unix:/var/www/discourse/tmp/sockets/thin.1.sock;
|
|
|
|
server unix:/var/www/discourse/tmp/sockets/thin.2.sock;
|
|
|
|
server unix:/var/www/discourse/tmp/sockets/thin.3.sock;
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
|
|
|
|
2013-11-17 23:53:36 -05:00
|
|
|
# If you are going to use Puma, use these:
|
|
|
|
#
|
|
|
|
# upstream discourse {
|
|
|
|
# server unix:/var/www/discourse/tmp/sockets/puam.sock;
|
|
|
|
# }
|
|
|
|
|
2014-01-09 00:39:30 -05:00
|
|
|
|
|
|
|
# attempt to preserve the proto, must be in http context
|
|
|
|
map $http_x_forwarded_proto $thescheme {
|
|
|
|
default $scheme;
|
|
|
|
https https;
|
|
|
|
}
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
server {
|
|
|
|
|
|
|
|
listen 80;
|
|
|
|
gzip on;
|
|
|
|
gzip_min_length 1000;
|
|
|
|
gzip_types application/json text/css application/x-javascript;
|
|
|
|
|
2013-05-29 00:07:26 -04:00
|
|
|
server_name enter.your.web.hostname.here;
|
2013-02-28 11:24:03 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
sendfile on;
|
|
|
|
|
|
|
|
keepalive_timeout 65;
|
2013-09-06 13:18:42 -04:00
|
|
|
|
|
|
|
# maximum file upload size (keep up to date when changing the corresponding site setting)
|
2013-07-21 03:42:07 -04:00
|
|
|
client_max_body_size 2m;
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
# path to discourse's public directory
|
|
|
|
set $public /var/www/discourse/public;
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
location / {
|
2013-09-06 13:18:42 -04:00
|
|
|
root $public;
|
2014-01-08 20:36:42 -05:00
|
|
|
|
2014-01-23 10:40:58 -05:00
|
|
|
location ~* \.(eot|ttf|woff|ico)$ {
|
2014-02-12 23:36:51 -05:00
|
|
|
expires 1y;
|
|
|
|
add_header Cache-Control public;
|
|
|
|
add_header Access-Control-Allow-Origin *;
|
|
|
|
}
|
2013-09-06 13:18:42 -04:00
|
|
|
|
|
|
|
location ~ ^/assets/ {
|
|
|
|
expires 1y;
|
2013-08-14 06:20:05 -04:00
|
|
|
add_header ETag "";
|
2014-02-12 23:36:51 -05:00
|
|
|
add_header Cache-Control public;
|
2013-09-06 13:18:42 -04:00
|
|
|
break;
|
2013-08-14 06:20:05 -04:00
|
|
|
}
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
location ~ ^/uploads/ {
|
2013-02-05 14:16:51 -05:00
|
|
|
expires 1y;
|
|
|
|
add_header ETag "";
|
2014-02-12 23:36:51 -05:00
|
|
|
add_header Cache-Control public;
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
## optional upload anti-hotlinking rules
|
|
|
|
#valid_referers none blocked mysite.com *.mysite.com;
|
2014-02-12 23:36:51 -05:00
|
|
|
#if ($invalid_referer) { return 403; }
|
2013-02-28 11:24:03 -05:00
|
|
|
|
2013-10-01 11:52:04 -04:00
|
|
|
# custom CSS
|
|
|
|
location ~ /stylesheet-cache/ { try_files $uri =404; }
|
|
|
|
# images
|
2013-09-06 13:18:42 -04:00
|
|
|
location ~* \.(gif|png|jpg|jpeg|bmp|tif|tiff)$ { try_files $uri =404; }
|
2013-10-01 11:52:04 -04:00
|
|
|
# thumbnails & optimized images
|
2013-09-06 13:18:42 -04:00
|
|
|
location ~ /_optimized/ { try_files $uri =404; }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
# attachments must go through the rails application to get the right content-disposition header
|
|
|
|
proxy_set_header X-Sendfile-Type X-Accel-Redirect;
|
|
|
|
proxy_set_header X-Accel-Mapping $public/=/downloads/;
|
2013-02-05 14:16:51 -05:00
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
2013-02-28 11:24:03 -05:00
|
|
|
|
2014-02-12 23:36:51 -05:00
|
|
|
location ~ ^/backups/ {
|
|
|
|
# backups must go through the rails application to handle security
|
|
|
|
proxy_set_header X-Sendfile-Type X-Accel-Redirect;
|
|
|
|
proxy_set_header X-Accel-Mapping $public/=/downloads/;
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
try_files $uri @discourse;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /downloads/ {
|
|
|
|
internal;
|
|
|
|
alias $public/;
|
|
|
|
}
|
|
|
|
|
|
|
|
location @discourse {
|
2014-02-12 23:36:51 -05:00
|
|
|
proxy_set_header Host $http_host;
|
2013-09-06 13:18:42 -04:00
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2014-01-08 20:36:42 -05:00
|
|
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
2013-09-06 13:18:42 -04:00
|
|
|
|
|
|
|
proxy_pass http://discourse;
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|