13 lines
195 B
Plaintext
Executable File
13 lines
195 B
Plaintext
Executable File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
location / {
|
|
proxy_pass http://backend:8000;
|
|
}
|
|
location /gutty {
|
|
proxy_pass http://gitea:3000;
|
|
}
|
|
|
|
|
|
}
|