site/proxy/conf

13 lines
194 B
Plaintext
Raw Normal View History

server {
2024-08-05 16:09:51 +00:00
listen 80;
server_name localhost;
location / {
proxy_pass http://backend:8000;
}
location /gutty{
proxy_pass http://gitea:3000;
}
2024-08-03 15:58:32 +00:00
}