mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2026-05-16 12:58:11 +02:00
11 lines
139 B
Nginx Configuration File
11 lines
139 B
Nginx Configuration File
server {
|
|
listen 5173;
|
|
server_name _;
|
|
|
|
root /app/dist;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |