1
0
forked from finn/site
site/proxy/conf

9 lines
126 B
Plaintext
Raw Normal View History

server {
2024-08-03 15:37:27 +00:00
listen 80;
server_name localhost;
location / {
proxy_pass http://backend:8000;
}
}