use pgsql
This commit is contained in:
parent
8cccd92338
commit
0c2fbfe545
29
README.md
29
README.md
@ -1,4 +1,5 @@
|
|||||||
Murmur server for [Mumble](https://wiki.mumble.info/wiki/Main_Page)
|
Murmur server for [Mumble](https://wiki.mumble.info/wiki/Main_Page) with
|
||||||
|
a postgre backend.
|
||||||
|
|
||||||
# Volumes
|
# Volumes
|
||||||
- `/var/lib/murmur`
|
- `/var/lib/murmur`
|
||||||
@ -27,6 +28,32 @@ Maximum number of concurrent clients allowed.
|
|||||||
## CERT_DOMAIN
|
## CERT_DOMAIN
|
||||||
Name of the certificate domain.
|
Name of the certificate domain.
|
||||||
|
|
||||||
|
## ROOT_NAME
|
||||||
|
- default: Root
|
||||||
|
|
||||||
|
Name of the root channel.
|
||||||
|
|
||||||
|
## DB_HOST
|
||||||
|
Database host.
|
||||||
|
|
||||||
|
## DB_NAME
|
||||||
|
- default: moodle
|
||||||
|
|
||||||
|
Database name.
|
||||||
|
|
||||||
|
## DB_USER
|
||||||
|
- default: moodle
|
||||||
|
|
||||||
|
Database user.
|
||||||
|
|
||||||
|
## DB_PASSWORD
|
||||||
|
Password for the database user.
|
||||||
|
|
||||||
|
## DB_PORT
|
||||||
|
- default: 5432
|
||||||
|
|
||||||
|
Database port.
|
||||||
|
|
||||||
# Ports
|
# Ports
|
||||||
- 64738
|
- 64738
|
||||||
|
|
||||||
|
@ -13,19 +13,19 @@
|
|||||||
|
|
||||||
# Path to database. If blank, will search for
|
# Path to database. If blank, will search for
|
||||||
# murmur.sqlite in default locations or create it if not found.
|
# murmur.sqlite in default locations or create it if not found.
|
||||||
database=/var/lib/murmur/murmur.sqlite
|
database={{ getenv "DB_NAME" "murmur" }}
|
||||||
|
|
||||||
# If you wish to use something other than SQLite, you'll need to set the name
|
# If you wish to use something other than SQLite, you'll need to set the name
|
||||||
# of the database above, and also uncomment the below.
|
# of the database above, and also uncomment the below.
|
||||||
# Sticking with SQLite is strongly recommended, as it's the most well tested
|
# Sticking with SQLite is strongly recommended, as it's the most well tested
|
||||||
# and by far the fastest solution.
|
# and by far the fastest solution.
|
||||||
#
|
#
|
||||||
#dbDriver=QMYSQL
|
dbDriver=QPSQL
|
||||||
#dbUsername=
|
dbUsername={{ getenv "DB_USER" "murmur" }}
|
||||||
#dbPassword=
|
dbPassword={{ getenv "DB_PASSWORD" }}
|
||||||
#dbHost=
|
dbHost={{ getenv "DB_HOST" }}
|
||||||
#dbPort=
|
dbPort={{ getenv "DB_PORT" "5432" }}
|
||||||
#dbPrefix=murmur_
|
dbPrefix=murmur_
|
||||||
#dbOpts=
|
#dbOpts=
|
||||||
|
|
||||||
# Murmur defaults to not using D-Bus. If you wish to use dbus, which is one of the
|
# Murmur defaults to not using D-Bus. If you wish to use dbus, which is one of the
|
||||||
@ -143,7 +143,7 @@ users={{getenv "MAX_USERS" "20"}}
|
|||||||
# addresses.
|
# addresses.
|
||||||
# Only uncomment the 'registerName' parameter if you wish to give your "Root" channel a custom name.
|
# Only uncomment the 'registerName' parameter if you wish to give your "Root" channel a custom name.
|
||||||
#
|
#
|
||||||
#registerName=Mumble Server
|
registerName={{ getenv "ROOT_NAME" "Root" }}
|
||||||
#registerPassword=secret
|
#registerPassword=secret
|
||||||
#registerUrl=http://mumble.sourceforge.net/
|
#registerUrl=http://mumble.sourceforge.net/
|
||||||
#registerHostname=
|
#registerHostname=
|
||||||
|
Loading…
Reference in New Issue
Block a user