ledstrip_sandbox/site.conf
2021-09-23 19:44:32 +02:00

13 lines
188 B
Plaintext

server {
listen 80;
location /api {
rewrite /api/(.*) /$1 break;
proxy_pass http://localhost:8080;
}
location / {
root /var/www/html
}
}