ledstrip_sandbox/site.conf

12 lines
161 B
Plaintext
Raw Normal View History

2021-09-23 17:44:32 +00:00
server {
listen 80;
location /api {
proxy_pass http://localhost:8080;
}
location / {
2021-09-23 18:09:02 +00:00
root /var/www/html/frontend;
2021-09-23 17:44:32 +00:00
}
}