14 lines
231 B
Nginx Configuration File
14 lines
231 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html/;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api {
|
|
proxy_pass http://server:8080;
|
|
}
|
|
}
|