mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
fix gitea_db_passord typo
This commit is contained in:
parent
dc87ede53f
commit
fb63b41825
3 changed files with 3 additions and 3 deletions
|
@ -94,7 +94,7 @@ The following have been tested with Debian 8, it should work on Ubuntu as well.
|
||||||
* `gitea_db_host`: Database host string `host:port`
|
* `gitea_db_host`: Database host string `host:port`
|
||||||
* `gitea_db_name`: Database name
|
* `gitea_db_name`: Database name
|
||||||
* `gitea_db_user`: Database username
|
* `gitea_db_user`: Database username
|
||||||
* `gitea_db_passord`: Database password
|
* `gitea_db_password`: Database password
|
||||||
* `gitea_db_ssl`: Use SSL ? (postgres only!). Can be `required`, `disable`, `verify-full`
|
* `gitea_db_ssl`: Use SSL ? (postgres only!). Can be `required`, `disable`, `verify-full`
|
||||||
* `gitea_db_path`: DB path, if you use `sqlite3`. The default is good enough to work though.
|
* `gitea_db_path`: DB path, if you use `sqlite3`. The default is good enough to work though.
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ gitea_db_type: sqlite3
|
||||||
gitea_db_host: 127.0.0.0:3306
|
gitea_db_host: 127.0.0.0:3306
|
||||||
gitea_db_name: root
|
gitea_db_name: root
|
||||||
gitea_db_user: gitea
|
gitea_db_user: gitea
|
||||||
gitea_db_passord: lel
|
gitea_db_password: lel
|
||||||
gitea_db_ssl: disable
|
gitea_db_ssl: disable
|
||||||
gitea_db_path: "{{ gitea_home }}/data/gitea.db"
|
gitea_db_path: "{{ gitea_home }}/data/gitea.db"
|
||||||
|
|
||||||
|
|
|
@ -152,7 +152,7 @@ DB_TYPE = {{ gitea_db_type }}
|
||||||
HOST = {{ gitea_db_host }}
|
HOST = {{ gitea_db_host }}
|
||||||
NAME = {{ gitea_db_name }}
|
NAME = {{ gitea_db_name }}
|
||||||
USER = {{ gitea_db_user }}
|
USER = {{ gitea_db_user }}
|
||||||
PASSWD = {{ gitea_db_passord }}
|
PASSWD = {{ gitea_db_password }}
|
||||||
; For "postgres" only, either "disable", "require" or "verify-full"
|
; For "postgres" only, either "disable", "require" or "verify-full"
|
||||||
SSL_MODE = {{ gitea_db_ssl }}
|
SSL_MODE = {{ gitea_db_ssl }}
|
||||||
; For "sqlite3" and "tidb", use absolute path when you start as service
|
; For "sqlite3" and "tidb", use absolute path when you start as service
|
||||||
|
|
Loading…
Reference in a new issue