mirror of
https://github.com/getlago/lago.git
synced 2025-02-23 21:25:54 +07:00
13 lines
201 B
Nginx Configuration File
13 lines
201 B
Nginx Configuration File
![]() |
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
location / {
|
||
|
root /app/front;
|
||
|
index index.html index.htm;
|
||
|
try_files $uri $uri/ /index.html =404;
|
||
|
}
|
||
|
|
||
|
include /etc/nginx/extra-conf.d/*.conf;
|
||
|
}
|