Compare commits
4 commits
6bc13c8d4c
...
8257b0b4a7
Author | SHA1 | Date | |
---|---|---|---|
8257b0b4a7 | |||
cf7d7b7dac | |||
4daf2e3aee | |||
76c0938619 |
4 changed files with 12 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
config/master.key
|
config/master.key
|
||||||
|
npm.tgz
|
||||||
|
|
|
@ -4,6 +4,13 @@
|
||||||
name: iptables-persistent
|
name: iptables-persistent
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
# TURN IT OFF
|
||||||
|
- name: Turn iptables off for now
|
||||||
|
service:
|
||||||
|
name: iptables
|
||||||
|
state: stopped
|
||||||
|
enabled: no
|
||||||
|
|
||||||
- name: Allow all loopback traffic
|
- name: Allow all loopback traffic
|
||||||
iptables:
|
iptables:
|
||||||
chain: INPUT
|
chain: INPUT
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: 'jc21/nginx-proxy-manager:latest'
|
image: jc21/nginx-proxy-manager:2.9.22
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 80:80 # Public HTTP Port
|
- 80:80 # Public HTTP Port
|
||||||
|
@ -11,5 +11,7 @@ services:
|
||||||
- ./data:/data
|
- ./data:/data
|
||||||
- ./letsencrypt:/etc/letsencrypt
|
- ./letsencrypt:/etc/letsencrypt
|
||||||
- ./default.conf:/etc/nginx/conf.d/default.conf
|
- ./default.conf:/etc/nginx/conf.d/default.conf
|
||||||
|
# hack to avoid sed on default.conf
|
||||||
|
- /dev/null:/etc/s6-overlay/s6-rc.d/prepare/50-ipv6.sh
|
||||||
environment:
|
environment:
|
||||||
- AWS_CONFIG_FILE=/etc/letsencrypt/credentials/credentials-6
|
- AWS_CONFIG_FILE=/etc/letsencrypt/credentials/credentials-6
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
filter = sshd
|
filter = sshd
|
||||||
# notify: Restart fail2ban
|
# notify: Restart fail2ban
|
||||||
|
|
||||||
- name: Start fail2ban on boot
|
- name: Turn fail2ban off for now
|
||||||
service:
|
service:
|
||||||
name: fail2ban
|
name: fail2ban
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue