26 lines
440 B
Nginx Configuration File
26 lines
440 B
Nginx Configuration File
worker_processes 1;
|
|
error_log logs/error.log;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
http {
|
|
server {
|
|
listen 8080;
|
|
|
|
include mime.types;
|
|
charset utf-8;
|
|
|
|
location / {
|
|
default_type text/html;
|
|
# content_by_lua_block {
|
|
# ngx.say("<p>hello, world</p>")
|
|
# }
|
|
}
|
|
|
|
location /css {
|
|
expires 1h;
|
|
alias css;
|
|
}
|
|
}
|
|
}
|