24 lines
349 B
Nginx Configuration File
24 lines
349 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
|
|
server_tokens off;
|
|
more_clear_headers Server;
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
root /var/www/html;
|
|
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|
|
}
|