summaryrefslogtreecommitdiffstats
path: root/pike
diff options
context:
space:
mode:
Diffstat (limited to 'pike')
-rw-r--r--pike/assembly.xml2
-rwxr-xr-xpike/run.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/pike/assembly.xml b/pike/assembly.xml
index 420c6c49..650c234d 100644
--- a/pike/assembly.xml
+++ b/pike/assembly.xml
@@ -32,6 +32,8 @@
<include>**/*.xsd</include>
<include>**/*.bpel</include>
<include>**/*.yml</include>
+ <include>**/*.crt</include>
+ <include>**/*.key</include>
</includes>
</fileSet>
<fileSet>
diff --git a/pike/run.sh b/pike/run.sh
index 3822c8a5..c3c962ee 100755
--- a/pike/run.sh
+++ b/pike/run.sh
@@ -19,7 +19,7 @@ export PYTHONPATH=lib/share
#nohup python manage.py runserver 0.0.0.0:9007 2>&1 &
if [ ${SSL_ENABLED} = "true" ]; then
- nohup uwsgi --https :9007,pike/pub/ssl/cert/cert.crt,pike/pub/ssl/cert/cert.key --module pike.wsgi --master --enable-threads --processes 4 &
+ nohup uwsgi --https :9007,pike/pub/ssl/cert/cert.crt,pike/pub/ssl/cert/cert.key,HIGH --module pike.wsgi --master --enable-threads --processes 4 &
else
nohup uwsgi --http :9007 --module pike.wsgi --master --enable-threads --processes 4 &