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
|
|
|
}
|
|
|
|
|
|
|
|
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-07-21 03:42:07 -04:00
|
|
|
client_max_body_size 2m;
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
location / {
|
2013-08-07 00:06:40 -04:00
|
|
|
root /var/www/discourse/public;
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-07-10 16:56:51 -04:00
|
|
|
## optional upload anti-hotlinking rules
|
|
|
|
#location ~ ^/uploads/ {
|
2013-06-20 22:49:04 -04:00
|
|
|
# valid_referers none blocked mysite.com *.mysite.com;
|
|
|
|
# if ($invalid_referer) {
|
|
|
|
# return 403;
|
|
|
|
# }
|
|
|
|
#}
|
2013-06-15 01:25:41 -04:00
|
|
|
|
2013-08-14 06:20:05 -04:00
|
|
|
## [LEGACY] this is deprecated, leaving it there for a small transition period
|
|
|
|
location ~ ^/t\/[0-9]+\/[0-9]+\/avatar {
|
|
|
|
expires 1d;
|
|
|
|
add_header Cache-Control public;
|
|
|
|
add_header ETag "";
|
|
|
|
}
|
|
|
|
|
2013-07-10 16:56:51 -04:00
|
|
|
location ~ ^/(assets|uploads)/ {
|
2013-02-05 14:16:51 -05:00
|
|
|
expires 1y;
|
|
|
|
add_header Cache-Control public;
|
|
|
|
add_header ETag "";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2013-02-28 11:24:03 -05:00
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# If the file exists as a static file serve it directly without
|
2013-07-14 00:06:59 -04:00
|
|
|
# running all the other rewrite tests on it
|
2013-02-05 14:16:51 -05:00
|
|
|
if (-f $request_filename) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!-f $request_filename) {
|
|
|
|
proxy_pass http://discourse;
|
|
|
|
break;
|
|
|
|
}
|
2013-02-28 11:24:03 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|