'''
server {
listen 12345;
server_name 10.10.10.132;
charset UTF-8;
client_max_body_size 75M;
location /static {
expires 30d;
autoindex on;
add_header Cache-Control private;
alias /home/zhangsan/git/nginxdemo/nginxdemo/static/;
}
location / {
include uwsgi_params;
uwsgi_pass 10.10.10.132:54321;
uwsgi_read_timeout 2;
}
}
'''
'''
server {
listen 12345;