12 lines
456 B
Plaintext
12 lines
456 B
Plaintext
|
#!/usr/bin/env python3
|
||
|
"""
|
||
|
Configuration settings for overwrought_server.py.
|
||
|
`modpack_name` is used for vanity purposes when naming the modpack.
|
||
|
`pw_hash` is the argon2-hashed version of the modpack owner's password.
|
||
|
`mods_dir` is the directory to place the mod files in for download. Your
|
||
|
web server/reverse proxy eg. Nginx should allow access to this directory.
|
||
|
"""
|
||
|
modpack_name = "motherlode1"
|
||
|
pw_hash = "PW_HASH"
|
||
|
mods_dir = "/var/www/overwrought/mods"
|