owncloud aktualisieren #1

Closed
fenris wants to merge 44 commits from task-377 into main
2 changed files with 33 additions and 42 deletions
Showing only changes of commit 326296d6ce - Show all commits

View file

@ -9,21 +9,7 @@
"storage": { "storage": {
"kind": "sqlite", "kind": "sqlite",
"data": { "data": {
"sqlite": { "path": "/var/authelia/state.db"
"path": "/var/authelia/state.db"
},
"postgresql": {
"host": "localhost",
"port": 5432,
"username": "authelia_user",
"schema": "authelia"
},
"mariadb": {
"host": "localhost",
"port": 3306,
"username": "authelia_user",
"schema": "authelia"
}
} }
}, },
"ntp_server": "time.cloudflare.com:123", "ntp_server": "time.cloudflare.com:123",

View file

@ -37,33 +37,38 @@
} }
}, },
{ {
"name": "ufw | check", "name": "ufw",
"become": true, "block": [
"check_mode": true, {
"community.general.ufw": { "name": "check",
"state": "enabled" "become": true,
}, "check_mode": true,
"register": "ufw_enable_check" "community.general.ufw": {
}, "state": "enabled"
{ },
"name": "ufw | allow port 80", "register": "ufw_enable_check"
"when": "not ufw_enable_check.changed", },
"become": true, {
"community.general.ufw": { "name": "allow port 80",
"rule": "allow", "when": "not ufw_enable_check.changed",
"port": "80", "become": true,
"proto": "tcp" "community.general.ufw": {
} "rule": "allow",
}, "port": "80",
{ "proto": "tcp"
"name": "ufw | allow port 443", }
"when": "not ufw_enable_check.changed", },
"become": true, {
"community.general.ufw": { "name": "allow port 443",
"rule": "allow", "when": "not ufw_enable_check.changed",
"port": "443", "become": true,
"proto": "tcp" "community.general.ufw": {
} "rule": "allow",
"port": "443",
"proto": "tcp"
}
},
]
}, },
{ {
"name": "auto reload", "name": "auto reload",