Initial rough commit to save the code before cleanup

This commit is contained in:
tanshu
2020-04-03 09:24:02 +05:30
commit e0e7b07468
29 changed files with 942 additions and 0 deletions

17
gitea/files/nginx.conf.j2 Normal file
View File

@ -0,0 +1,17 @@
server {
listen 80;
server_name {{ http_host }};
# location /_/static {
# alias /path/to/gitea/public;
# }
location / {
proxy_pass http://localhost:3000;
}
}