diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-12 12:32:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-17 19:28:03 +0200 |
commit | 54e3c33fb327efe0cbfd806c5468cbe390dafeaa (patch) | |
tree | 2118df87f8ef53ea36f6e53b135cced7590a4648 /etc/config | |
parent | 2fda89944fa528e05c9f6b4fdcd684f2606582a8 (diff) |
Implement object model for packages
Diffstat (limited to 'etc/config')
-rw-r--r-- | etc/config | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,17 +6,17 @@ WORKSPACE_DIR="$PROJECT_DIR/var" # PostgreSQL settings (used in pgctl) PG_PORT=8432 +PG_SCHEMA_DIR="$PROJECT_DIR/brep" PG_DATA_DIR="$WORKSPACE_DIR/lib/pgsql" -PG_SOCKET_DIR="$WORKSPACE_DIR/run/pgsql" PG_LOG_DIR="$WORKSPACE_DIR/log/pgsql" -PG_OUT_FILE="$WORKSPACE_DIR/run/pgsql/out" +PG_WORKSPACE_DIR="$WORKSPACE_DIR/run/pgsql" # Apache settings (used in apachectl) AP_PORT=8080 AP_SERVER_NAME="cppget.org:$AP_PORT" AP_ADMIN_EMAIL=admin@cppget.org AP_LOG_LEVEL=trace1 -AP_DB_HOST="$PG_SOCKET_DIR" +AP_DB_HOST="$PG_WORKSPACE_DIR" AP_DB_PORT=$PG_PORT AP_MODULE_DIR="$PROJECT_DIR" AP_WWW_DIR="$PROJECT_DIR/www" |