12 lines
No EOL
274 B
Nginx Configuration File
12 lines
No EOL
274 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
# Use 'alias' to map the specific sub-path
|
|
location /lab/data-dashboard/ {
|
|
alias /usr/share/nginx/html/;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
gzip on;
|
|
gzip_types text/css application/javascript application/json;
|
|
} |