Merge branch 'nginx' of ssh://git.karchnu.fr:2202/WeirdOS/service into nginx

master
Luka Vandervelden 2019-10-29 12:33:27 +01:00
commit b202aa2b5c
2 changed files with 17 additions and 3 deletions

View File

@ -1,5 +1,5 @@
command: gitea -C . -w . -c ./custom/conf/app.ini
consumes: postgresql
consumes: postgresql, http?
requires-domain: true
ports: http

View File

@ -23,8 +23,8 @@ http {
{% for user in consumers["www"] %}
server {
listen {{ port(user.id) }} ;
listen [::]:{{ port(user.id) }} ;
listen {{ port(service.id) }} ;
listen [::]:{{ port(service.id) }} ;
server_name {{ user.domain }} ;
location / {
@ -33,4 +33,18 @@ http {
}
{% endfor %}
{% for user in consumers["http"] %}
server {
listen {{ port(service.id) }};
listen [::]:{{ port(service.id) }};
server_name {{ user.domain }} *.{{ user.domain }};
location / {
proxy_set_header Host $host;
proxy_next_upstream_timeout 2s;
proxy_pass http://127.0.0.1:{{ port(user.id) }}/;
}
}
{% endfor %}
}