20 lines
260 B
Nginx Configuration File
20 lines
260 B
Nginx Configuration File
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
autoindex off;
|
|
|
|
server_name _;
|
|
server_tokens off;
|
|
|
|
root /usr/share/nginx/html;
|
|
gzip_static on;
|
|
}
|
|
}
|
|
|
|
events {}
|