summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavor <vorgrimmlerdavid@gmx.de>2011-11-15 14:28:49 +0100
committerdavor <vorgrimmlerdavid@gmx.de>2011-11-15 14:28:49 +0100
commit4f89b9975ba06d9e2fffe862b3a12978cab5155b (patch)
tree3aae54ae3b9edb03df3e86b3b250e82b1954a658
parentc81acb5265a6a281d2757710f36e2e6e2e48986e (diff)
Minor fixes
-rw-r--r--base-install.sh2
-rwxr-xr-xconfig.sh4
-rw-r--r--nginx.conf2
-rwxr-xr-xopenbabel.sh2
4 files changed, 5 insertions, 5 deletions
diff --git a/base-install.sh b/base-install.sh
index 373df1f..90abb6e 100644
--- a/base-install.sh
+++ b/base-install.sh
@@ -27,7 +27,7 @@ fi
touch $OT_UI_CONF
# Pkgs
-packs="binutils build-essential git-core gnuplot hostname libcurl4-openssl-dev libgsl0-dev libreadline5-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libxslt1-dev lsb-release psmisc pwgen raptor-utils r-base r-base-core r-base-dev sqlite3 sun-java6-jdk wget xsltproc zlib1g-dev"
+packs="binutils build-essential git-core gnuplot hostname libcurl4-openssl-dev libgsl0-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libxslt1-dev lsb-release psmisc pwgen raptor-utils r-base r-base-core r-base-dev sqlite3 sun-java6-jdk wget xsltproc zlib1g-dev"
echo
echo "Base Packages:"
diff --git a/config.sh b/config.sh
index dcd4db3..e0b20e0 100755
--- a/config.sh
+++ b/config.sh
@@ -20,9 +20,9 @@ KL_NUM_VER="0.9-11"
REDIS_NUM_VER="2.2.2"
# 4) Server settings.
-NGINX_SERVERNAME="localhost"
+NGINX_SERVERNAME="toxcreate3.in-silico.ch"
WWW_DEST="$OT_PREFIX/www"
-PORT="" # leave empty for port 80 otherwise set to e.g. ":8080"
+PORT=":8080" # leave empty for port 80 otherwise set to e.g. ":8080"
# Done.
diff --git a/nginx.conf b/nginx.conf
index 4dcf81a..6ee1662 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -23,7 +23,7 @@ http {
# webservices
server {
- listen PORT;
+ listen 8080;
client_max_body_size 5000m;
server_name toxcreate3;
location / {
diff --git a/openbabel.sh b/openbabel.sh
index 4e55ff8..4b6cfc0 100755
--- a/openbabel.sh
+++ b/openbabel.sh
@@ -76,7 +76,7 @@ fi
echo "Bindings:"
OB_DONE=false
. "$OT_UI_CONF"
-mkdir "$OB_DEST_BINDINGS">/dev/null 2>&1
+mkdir -p "$OB_DEST_BINDINGS">/dev/null 2>&1
if [ ! -d "$OB_DEST_BINDINGS" ]; then
echo "Install directory '$OB_DEST_BINDINGS' is not available! Aborting..."
exit 1