Files
demus 755fb6b25f
Build and provide rpm of gitea / rpmbuild (f44) (release) Successful in 4m56s
Build and provide rpm of gitea / rpmbuild (rawhide) (release) Successful in 4m59s
Move rpm file to repo root to get rpmautospec to work
The firewalld package now contains the gitea.xml file
2026-05-17 01:03:02 +02:00

41 lines
712 B
Nginx Configuration File

# Single node, single domain
#server {
# listen 80;
# server_name git.example.com;
#
# location /_/static/assets {
# alias /path/to/gitea/public;
# }
#
# location / {
# proxy_pass http://localhost:3000;
# }
#}
# Two nodes, two domains
#server {
# listen 80;
# server_name git.example.com;
#
# location / {
# proxy_pass http://localhost:3000;
# }
#}
# static content delivery server
#server {
# listen 80;
# server_name cdn.example.com;
#
# location /gitea {
# alias /path/to/gitea/public;
# }
#
# location / {
# return 404;
# }
#}
# If you need to resolve a 413 error, add "client_max_body_size 16M;" to your
# location block