19 lines
255 B
Nginx Configuration File
19 lines
255 B
Nginx Configuration File
events {}
|
|
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 8080;
|
|
|
|
resolver 127.0.0.1;
|
|
autoindex off;
|
|
|
|
server_name _;
|
|
server_tokens off;
|
|
|
|
root /app/static;
|
|
gzip_static on;
|
|
}
|
|
}
|