semaphore-playbooks/debian12-forgejo/templates/forgejo.conf

12 lines
201 B
Text
Raw Normal View History

2023-08-05 18:08:06 +00:00
server {
listen 80;
server_name {{ domain }};
2024-04-28 20:39:18 +00:00
client_max_body_size 500M;
2023-08-05 18:08:06 +00:00
location / { # Note: Trailing slash
proxy_pass http://localhost:3000; # Note: Trailing slash
}
}