Enferne ungenutzte Variablen

This commit is contained in:
phil 2022-06-26 23:05:36 +02:00
parent 60e3bc7019
commit f9f2d7e45b
2 changed files with 2 additions and 3 deletions

View file

@ -14,7 +14,6 @@ zammad_database_user: zammad
zammad_database_configuration: "{{ zammad_home }}/config/database.yml"
zammad_env_file: /etc/zammad/zammad.env
zammad_home: /opt/zammad
zammad_host: support.sao
zammad_log_file: zammad.log
zammad_log_name: zammad
zammad_log_path: /var/log/zammad

View file

@ -14,9 +14,9 @@ server {
location /ws {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://{{ zammad_host }}:80;
proxy_pass http://{{ inventory_hostname }}:80;
}
location / {
proxy_pass http://{{ zammad_host }}:80;
proxy_pass http://{{ inventory_hostname }}:80;
}
}