mirror of
https://github.com/jumpserver/lina.git
synced 2025-04-28 03:20:24 +00:00
9 lines
100 B
Nginx Configuration File
9 lines
100 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
try_files $uri / /index.html;
|
|
alias /opt/lina/;
|
|
}
|
|
}
|