16 lines
222 B
Nginx Configuration File
16 lines
222 B
Nginx Configuration File
|
worker_processes 4;
|
||
|
|
||
|
events { worker_connections 1024; }
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
|
||
|
server {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.html;
|
||
|
}
|
||
|
}
|
||
|
}
|