dpaste/server/nginx_server.conf

16 lines
363 B
Text
Raw Normal View History

2013-05-27 19:26:36 +10:00
error_log /srv/dpaste.de/var/nginx.error.log;
keepalive_timeout 5;
client_max_body_size 4G;
2013-05-29 08:35:01 +10:00
2013-05-27 19:26:36 +10:00
location /media/ {
alias /srv/dpaste.de/var/media/;
}
2013-05-29 08:35:01 +10:00
2013-05-27 19:26:36 +10:00
location /static/ {
alias /srv/dpaste.de/var/static/;
}
2013-05-29 08:35:01 +10:00
2013-05-27 19:26:36 +10:00
location / {
2013-05-29 08:35:01 +10:00
include /srv/dpaste.de/src/dpaste/server/nginx_server_appforward.conf;
2013-05-27 19:26:36 +10:00
}