This repository has been archived by the owner on Jan 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build now creates the apache file. i simplified settings.py.tmpl some…
… to match what i do in deploys. i can always introduce more complexity later.
- Loading branch information
Showing
2 changed files
with
50 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,24 +2,19 @@ PROJECT_HOME = '' #the name of the directory the project will be hosted under | |
CODE_HOME = '' #the name of the directory the code will be hosted in | ||
|
||
REPO_TYPE = '' #one of git, hg, or svn | ||
REPO = '' | ||
REPO = '' #the url of the code repo | ||
USER = '' #The user for the server | ||
|
||
#SERVER BASED SETUP INFO | ||
# Each of the following variables consists of a three part tuple, defining | ||
# that variable for each server in STAGING, INTERNAL, and PRODUCTION | ||
|
||
LIGHTTPD_USER = ('', '', '') #The lighty user for the server (e.g. www-data) | ||
APACHE_USER = ('', '', '') #The apache user for the server (e.g. www-data) | ||
ADMIN = ('', '', '') #The admin email for the apache instance (e.g. [email protected]) | ||
|
||
MYSQL_USER = ('', '', '') #The mysql user for the project | ||
MYSQL_PASSWORD = ('', '', '') #The password for the mysql user on the project | ||
|
||
SERVER = ('', '', '') #The ip or servername for the server | ||
USER = ('', '', '') #The user for the server | ||
SITE_URL = ('', '', '') #The url the site is hosted at on the server (http://example.com, http://example.com:8080, http://bad.example.com) | ||
APACHE_PORT = ('', '', '') #The port apache is listening on | ||
URL = ('', '', '') #The url the site is hosted at on the server (http://example.com, http://example.com:8080, http://bad.example.com) | ||
PORT = ('', '', '') #The port apache is listening on | ||
DJANGO_PROCESS = ('', '', '') #The process daemon for the wsgi django handler | ||
OWNER = ('', '', '') #The user who should own the site files, logs, etc | ||
GROUP = ('', '', '') #The group who should own the site files, logs, etc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters