config: nginx example, prefered a complete config
Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
parent
b7be16f5ad
commit
1620a60905
1 changed files with 67 additions and 22 deletions
|
@ -1,24 +1,69 @@
|
||||||
server {
|
user www-data;
|
||||||
listen 80;
|
worker_processes 2;
|
||||||
server_name destruction.io;
|
pid /var/run/nginx.pid;
|
||||||
|
daemon off;
|
||||||
|
|
||||||
location /static/ {
|
events {
|
||||||
alias /home/r/dinamycweb/static/;
|
worker_connections 512;
|
||||||
}
|
# multi_accept on;
|
||||||
|
}
|
||||||
location /media/ {
|
|
||||||
alias /home/r/dinamycweb/media/;
|
http {
|
||||||
|
sendfile on;
|
||||||
|
tcp_nopush on;
|
||||||
|
tcp_nodelay on;
|
||||||
|
keepalive_timeout 65;
|
||||||
|
types_hash_max_size 2048;
|
||||||
|
server_tokens off;
|
||||||
|
port_in_redirect on;
|
||||||
|
|
||||||
|
server_names_hash_bucket_size 128;
|
||||||
|
server_name_in_redirect off;
|
||||||
|
|
||||||
|
client_max_body_size 60m;
|
||||||
|
|
||||||
|
include /etc/nginx/mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
|
||||||
|
send_timeout 300;
|
||||||
|
client_body_timeout 300;
|
||||||
|
client_header_timeout 300;
|
||||||
|
|
||||||
|
access_log /logs/access.log;
|
||||||
|
error_log /logs/error.log;
|
||||||
|
|
||||||
|
gzip on;
|
||||||
|
gzip_disable "msie6";
|
||||||
|
gzip_vary on;
|
||||||
|
gzip_proxied any;
|
||||||
|
gzip_comp_level 6;
|
||||||
|
gzip_buffers 16 8k;
|
||||||
|
gzip_http_version 1.1;
|
||||||
|
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
||||||
|
|
||||||
|
upstream django {
|
||||||
|
server 127.0.0.1:8000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80 default;
|
||||||
|
server_name localhost;
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://localhost:8080/;
|
proxy_pass http://django;
|
||||||
proxy_pass_header Server;
|
include proxy_params;
|
||||||
proxy_set_header Host $host;
|
}
|
||||||
proxy_redirect off;
|
location /media/ {
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
root /data;
|
||||||
proxy_set_header X-Scheme $scheme;
|
expires max;
|
||||||
proxy_connect_timeout 600;
|
access_log off;
|
||||||
proxy_send_timeout 600;
|
}
|
||||||
proxy_read_timeout 600;
|
location /static/ {
|
||||||
|
root /data;
|
||||||
|
expires max;
|
||||||
|
access_log off;
|
||||||
|
}
|
||||||
|
location ~ /\.ht { deny all; }
|
||||||
|
location ~ /\.hg { deny all; }
|
||||||
|
location ~ /\.svn { deny all; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue