blob: 1b42ef2351a79c4d05fd43d218766407f983606d (
plain) (
tree)
|
|
server {
listen 82;
server_name git.{{ global.domain_name }};
client_max_body_size 100M;
location / {
proxy_pass http://127.0.0.1:{{ srht_git_port }};
}
location /static {
root /usr/lib/python3.8/site-packages/hubsrht;
}
location /query {
proxy_pass http://127.0.0.1:{{ srht_git_api_port }};
}
location = /robots.txt {
root /var/www;
}
}
|