19 lines
269 B
Nginx Configuration File
19 lines
269 B
Nginx Configuration File
events {}
|
|
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
resolver 127.0.0.1;
|
|
autoindex off;
|
|
|
|
server_name _;
|
|
server_tokens off;
|
|
|
|
root /app;
|
|
gzip_static on;
|
|
}
|
|
} |