diff options
author | binary <me@rgoncalves.se> | 2021-01-18 08:51:43 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-01-18 08:51:43 +0100 |
commit | 3d2f89b3bdda212c57975cc261ea8c9040aee159 (patch) | |
tree | 3c0b4e5818f8a036ced87790e37269b5c1cb7f96 /roles/srht/templates/meta.srht.conf.j2 | |
parent | f83652e0e723af7afbeb3494ed888db76d5efa82 (diff) | |
download | infrastructure-3d2f89b3bdda212c57975cc261ea8c9040aee159.tar.gz |
Refactor srht role with vars
Diffstat (limited to 'roles/srht/templates/meta.srht.conf.j2')
-rw-r--r-- | roles/srht/templates/meta.srht.conf.j2 | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/roles/srht/templates/meta.srht.conf.j2 b/roles/srht/templates/meta.srht.conf.j2 index f5a3a2c..6c3abec 100644 --- a/roles/srht/templates/meta.srht.conf.j2 +++ b/roles/srht/templates/meta.srht.conf.j2 @@ -1,22 +1,25 @@ server { - listen 81; - server_name meta.git.{{ global.domain_name }}; - client_max_body_size 100M; + 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 }}; - } + gzip on; + gzip_types text/css text/html; - location /static { - root /usr/lib/python3.8/site-packages/metasrht; - } + location / { + proxy_pass http://127.0.0.1:{{ srht_meta_port }}; + } - location /query { - proxy_pass http://127.0.0.1:{{ srht_meta_api_port }}; - } + location /static { + root /usr/lib/python3.8/site-packages/hubsrht; + } - location = /robots.txt { - root /var/www; - } + location /query { + proxy_pass http://127.0.0.1:{{ srht_meta_api_port }}; + } + + location ^~ /.well-known { + root /var/www; + } } |