diff options
Diffstat (limited to 'roles/srht/templates/meta.srht.conf.j2')
-rw-r--r-- | roles/srht/templates/meta.srht.conf.j2 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/srht/templates/meta.srht.conf.j2 b/roles/srht/templates/meta.srht.conf.j2 new file mode 100644 index 0000000..f5a3a2c --- /dev/null +++ b/roles/srht/templates/meta.srht.conf.j2 @@ -0,0 +1,22 @@ +server { + listen 81; + server_name meta.git.{{ global.domain_name }}; + client_max_body_size 100M; + + location / { + proxy_pass http://127.0.0.1:{{ srht_meta_port }}; + } + + location /static { + root /usr/lib/python3.8/site-packages/metasrht; + } + + location /query { + proxy_pass http://127.0.0.1:{{ srht_meta_api_port }}; + } + + location = /robots.txt { + root /var/www; + } +} + |