migration of open-etc-friends-pool for use with Etica/EGAZ
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
346 B

server {
listen 80;
listen [::]:80;
root /var/www/etcpool;
index index.html index.htm index.nginx-debian.html;
server_name etc.yourdomain.name;
location / {
try_files $uri $uri/ =404;
}
location /api {
proxy_pass http://127.0.0.1:8080/api;
}
}