roles/nginx: Add support for gitea

gitea hosts are basically webservers, but we need to proxy pass. I
am setting up gitea itself manually for now.
This commit is contained in:
2021-09-27 12:15:47 +03:00
parent f8752bb3e7
commit d5eed5055e
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
location / {
proxy_pass http://localhost:3000;
}