mirror of
https://github.com/zoriya/Aeris.git
synced 2026-06-01 10:25:18 +00:00
14 lines
178 B
Nginx Configuration File
14 lines
178 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://api:8080/;
|
|
}
|
|
} |