blob: c3105bf882e5a31b0d3b3c9a29869415a4f8bb66 [file]
error_log /tmp/error.log;
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
server {
listen 0.0.0.0:8080;
server_name localhost;
access_log /tmp/access.log;
root /tmp/static;
location / {
}
}
}