Cleanup role
This commit is contained in:
parent
62c1026254
commit
bf18be94bd
3 changed files with 0 additions and 69 deletions
|
@ -19,9 +19,6 @@
|
|||
- import_tasks: syslog.yml
|
||||
tags: syslog
|
||||
|
||||
- import_tasks: webserver.yml
|
||||
tags: webserver
|
||||
|
||||
- import_tasks: systemd.yml
|
||||
tags: systemd
|
||||
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
- name: "webserver: Konfiguration kopieren"
|
||||
template:
|
||||
src: nginx-site.j2
|
||||
dest: "{{ zammad_webserver_configuration }}"
|
||||
notify: reload nginx
|
||||
|
||||
- name: "webserver: Kofiguration aktivieren"
|
||||
file:
|
||||
src: "{{ zammad_webserver_configuration }}"
|
||||
dest: "/etc/nginx/sites-enabled/{{ zammad_domain }}"
|
||||
state: link
|
||||
notify: reload nginx
|
|
@ -1,54 +0,0 @@
|
|||
### {{ ansible_managed }}
|
||||
|
||||
upstream zammad-railsserver {
|
||||
server 127.0.0.1:3000;
|
||||
}
|
||||
|
||||
upstream zammad-websocket {
|
||||
server 127.0.0.1:6042;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name {{ zammad_domain }};
|
||||
|
||||
root {{ zammad_home }}/public;
|
||||
error_log /var/log/nginx/{{ zammad_domain }}.error.log;
|
||||
|
||||
client_max_body_size 50M;
|
||||
|
||||
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
|
||||
expires max;
|
||||
}
|
||||
|
||||
location /cable {
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header CLIENT_IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_read_timeout 86400;
|
||||
proxy_pass http://zammad-railsserver;
|
||||
}
|
||||
|
||||
location /ws {
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header CLIENT_IP $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_read_timeout 86400;
|
||||
proxy_pass http://zammad-websocket;
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header CLIENT_IP $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto https;
|
||||
# Change this line in an SSO setup
|
||||
proxy_set_header X-Forwarded-User "";
|
||||
proxy_read_timeout 300;
|
||||
proxy_pass http://zammad-railsserver;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue