mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
16 lines
254 B
Nginx Configuration File
16 lines
254 B
Nginx Configuration File
worker_processes 4;
|
|
|
|
events { worker_connections 1024; }
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
include /etc/nginx/mime.types;
|
|
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|
|
}
|
|
|