diff options
author | binary <me@rgoncalves.se> | 2021-01-15 15:48:42 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-01-15 15:49:36 +0100 |
commit | 58a81dc2ea748cf769d88b7515a39c6587d37ce2 (patch) | |
tree | c7664528dba83bc4ddc341137c53ec4acf072f15 /roles/srht/templates/hub.srht.conf.j2 | |
parent | dd2e7cf9113349b9515a27a076f2e45a8a34684e (diff) | |
download | infrastructure-58a81dc2ea748cf769d88b7515a39c6587d37ce2.tar.gz |
Add nginx and sourcehut role
Diffstat (limited to 'roles/srht/templates/hub.srht.conf.j2')
-rw-r--r-- | roles/srht/templates/hub.srht.conf.j2 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/srht/templates/hub.srht.conf.j2 b/roles/srht/templates/hub.srht.conf.j2 new file mode 100644 index 0000000..41775f4 --- /dev/null +++ b/roles/srht/templates/hub.srht.conf.j2 @@ -0,0 +1,22 @@ +server { + listen 80; + server_name git.{{ global.domain_name }}; + client_max_body_size 100M; + + location / { + proxy_pass http://127.0.0.1:{{ srht_hub_port }}; + } + + location /static { + root /usr/lib/python3.8/site-packages/hubsrht; + } + + location /query { + proxy_pass http://127.0.0.1:{{ srht_hub_port }}; + } + + location = /robots.txt { + root /var/www; + } +} + |