mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
685 B
38 lines
685 B
server {
|
|
listen 80;
|
|
client_max_body_size 4G;
|
|
|
|
server_name localhost;
|
|
|
|
keepalive_timeout 5;
|
|
|
|
|
|
location /static/ {
|
|
alias /static/;
|
|
}
|
|
|
|
location /javascript/bootstrap/ {
|
|
alias /static/;
|
|
}
|
|
|
|
location /javascript/jquery/ {
|
|
alias /static/admin/js/vendor/jquery/;
|
|
}
|
|
|
|
location /media/ {
|
|
alias /media/;
|
|
}
|
|
|
|
location / {
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
proxy_pass http://re2o:8000$request_uri;
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|