site/proxy/conf

13 lines
195 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;
}
2024-08-03 15:58:32 +00:00
location /gutty {
proxy_pass http://gitea:3000;
}
}