mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-11 11:18:02 -04:00
14 lines
208 B
Nginx Configuration File
14 lines
208 B
Nginx Configuration File
events { }
|
|
http {
|
|
include mime.types;
|
|
|
|
server {
|
|
listen 8080;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html =404;
|
|
}
|
|
}
|
|
}
|