Compare commits
No commits in common. "85a6c3894a6a2540334b48baf8aa02ff505aeba7" and "b255680a7ab8bd11634515afcef0d9e953f5b324" have entirely different histories.
85a6c3894a
...
b255680a7a
@ -3,7 +3,6 @@ network_type: static
|
|||||||
allow_reboot: true
|
allow_reboot: true
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
- apache2-utils
|
|
||||||
- cryptsetup
|
- cryptsetup
|
||||||
- curl
|
- curl
|
||||||
- dnsutils
|
- dnsutils
|
||||||
|
@ -27,10 +27,3 @@
|
|||||||
name: wg-quick@wg0
|
name: wg-quick@wg0
|
||||||
state: started
|
state: started
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
- name: Add WireGuard firewall rule
|
|
||||||
ufw:
|
|
||||||
rule: allow
|
|
||||||
port: "{{ wireguard.listenport }}"
|
|
||||||
proto: tcp
|
|
||||||
when: wireguard.listenport is defined
|
|
||||||
|
@ -28,16 +28,9 @@ server {
|
|||||||
ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
|
ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
|
||||||
{% endif %}
|
{% endif %}
|
||||||
location / {
|
location / {
|
||||||
{% if item.restrict is defined and item.restrict %}
|
|
||||||
auth_basic "{{ item.restrict_name | default('Restricted Access') }}";
|
|
||||||
auth_basic_user_file {{ item.restrict_file | default('/etc/nginx/.htpasswd') }};
|
|
||||||
{% endif %}
|
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_pass {{ item.proxy_pass }};
|
proxy_pass {{ item.proxy_pass }};
|
||||||
{% if item.proxy_ssl_verify is defined and item.proxy_ssl_verify is false %}
|
|
||||||
proxy_ssl_verify off;
|
|
||||||
{% endif %}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user