17 lines
276 B
Nginx Configuration File
17 lines
276 B
Nginx Configuration File
|
events {
|
||
|
worker_connections 10000;
|
||
|
}
|
||
|
http {
|
||
|
server {
|
||
|
listen [::]:80 default_server;
|
||
|
listen 80;
|
||
|
|
||
|
root /usr/share/nginx/html;
|
||
|
include /etc/nginx/mime.types;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri /index.html;
|
||
|
}
|
||
|
}
|
||
|
}
|