mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 13:27:35 +00:00
12 lines
184 B
Nginx Configuration File
12 lines
184 B
Nginx Configuration File
server {
|
|
listen 8006;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Angular SPA fallback routing
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|