mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
update NGINX sample to allow admin to download backups
This commit is contained in:
parent
b05bb86323
commit
faf03fdeb1
1 changed files with 16 additions and 12 deletions
|
@ -46,28 +46,26 @@ server {
|
||||||
root $public;
|
root $public;
|
||||||
|
|
||||||
location ~* \.(eot|ttf|woff|ico)$ {
|
location ~* \.(eot|ttf|woff|ico)$ {
|
||||||
add_header Access-Control-Allow-Origin *;
|
expires 1y;
|
||||||
expires 1y;
|
add_header Cache-Control public;
|
||||||
add_header Cache-Control public;
|
add_header Access-Control-Allow-Origin *;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ ^/assets/ {
|
location ~ ^/assets/ {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
add_header Cache-Control public;
|
|
||||||
add_header ETag "";
|
add_header ETag "";
|
||||||
|
add_header Cache-Control public;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ ^/uploads/ {
|
location ~ ^/uploads/ {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
add_header Cache-Control public;
|
|
||||||
add_header ETag "";
|
add_header ETag "";
|
||||||
|
add_header Cache-Control public;
|
||||||
|
|
||||||
## optional upload anti-hotlinking rules
|
## optional upload anti-hotlinking rules
|
||||||
#valid_referers none blocked mysite.com *.mysite.com;
|
#valid_referers none blocked mysite.com *.mysite.com;
|
||||||
#if ($invalid_referer) {
|
#if ($invalid_referer) { return 403; }
|
||||||
# return 403;
|
|
||||||
#}
|
|
||||||
|
|
||||||
# custom CSS
|
# custom CSS
|
||||||
location ~ /stylesheet-cache/ { try_files $uri =404; }
|
location ~ /stylesheet-cache/ { try_files $uri =404; }
|
||||||
|
@ -83,6 +81,14 @@ server {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
try_files $uri @discourse;
|
try_files $uri @discourse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,12 +98,10 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location @discourse {
|
location @discourse {
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
|
||||||
|
|
||||||
proxy_set_header X-Forwarded-Proto $thescheme;
|
proxy_set_header X-Forwarded-Proto $thescheme;
|
||||||
proxy_set_header Host $http_host;
|
|
||||||
|
|
||||||
proxy_pass http://discourse;
|
proxy_pass http://discourse;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue