blob: 6a55e501b31d44cec35ba96b9b243486803f3dd1 [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 web1";
}
location /static/ {
alias static/;
}
}
}