blob: 7501d728e167f0ef941700cad970f12db6c449ec [file] [log] [blame]
worker_processes 1;
error_log stderr notice;
events {
worker_connections 1024;
}
http {
variables_hash_max_size 1024;
access_log off;
real_ip_header X-Real-IP;
charset utf-8;
server {
listen 80;
location / {
return 200 "hello web2";
}
location /static/ {
alias static/;
}
}
}