24 lines
669 B
Plaintext
24 lines
669 B
Plaintext
# django project settings
|
|
user="centos"
|
|
projectname="mysite"
|
|
hostname="centos.duco.net"
|
|
letsencrypt=False
|
|
|
|
# set True if CentOS minimal install
|
|
install_epel_release=False
|
|
|
|
# general install settings
|
|
logdir="/var/log/djangosetup/"
|
|
yumlogloc=$logdir"yum.log"
|
|
yumlogmsg="See $yumlogloc for more info."
|
|
firelogloc=$logdir"firewall.log"
|
|
firelogmsg="See $firelogloc for more info."
|
|
pylogloc=$logdir"python.log"
|
|
pylogmsg="See $pylogloc for more info."
|
|
djalogloc=$logdir"django.log"
|
|
djamsg="See $djalogloc for more info."
|
|
gunicornlogloc=$logdir"gunicorn.log"
|
|
nginxlogloc=$logdir"nginx.log"
|
|
|
|
# python settings
|
|
pylink="https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz" |