ledstrip_sandbox/site.conf

13 lines
188 B
Plaintext
Raw Normal View History

2021-09-23 17:44:32 +00:00
server {
listen 80;
location /api {
rewrite /api/(.*) /$1 break;
proxy_pass http://localhost:8080;
}
location / {
root /var/www/html
}
}