Overwrought/config_server.py.template

12 lines
456 B
Plaintext
Raw Normal View History

2019-06-02 18:20:55 -04:00
#!/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"