X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc.d%2Fhttpd;h=f21840394ca3dddc2002a05c1001c3b5a2e3d41e;hb=77a8bd77c40473c9203735fd1f07efba4fe8268d;hp=412f6377587551bc32b255e8c37e61e9c990e1c0;hpb=3c6215a60855c501e1742714257c021472a1c34a;p=myplc.git diff --git a/plc.d/httpd b/plc.d/httpd index 412f637..f218403 100755 --- a/plc.d/httpd +++ b/plc.d/httpd @@ -74,7 +74,7 @@ case "$1" in # Disable default Listen directive sed -i -e '/^Listen/d' $httpd_conf - plcapi_noslash=$(echo $PLC_API_PATH | sed -e s,/,,g) + plc_api_path_noslash=$(echo $PLC_API_PATH | sed -e s,/,,g) # Set the port numbers for server in WWW API BOOT ; do enabled=PLC_${server}_ENABLED @@ -125,7 +125,7 @@ Listen ${!http_port} Redirect /planetlab https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/planetlab # as a matter of fact most xmlrpc clients won't follow the redirection # so this is mostly rethorical, but just in case... - Redirect /$plcapi_noslash https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/$plcapi_noslash + Redirect /$plc_api_path_noslash https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/$plc_api_path_noslash EOF @@ -144,23 +144,46 @@ EOF # this is used to locate the right certificates server_lower=$(echo $server | tr 'A-Z' 'a-z') cat < WSGISocketPrefix run/wsgi + - WSGIScriptAlias /$plcapi_noslash /usr/share/plc_api/apache/plc.wsgi -# xxx would be cool to be able to tweak this through config - WSGIDaemonProcess plcapi-wsgi-ssl user=apache group=apache processes=1 threads=25 - WSGIProcessGroup plcapi-wsgi-ssl # SSL SSLEngine On SSLCertificateFile /etc/planetlab/${server_lower}_ssl.crt SSLCertificateKeyFile /etc/planetlab/${server_lower}_ssl.key SSLCertificateChainFile /etc/planetlab/${server_lower}_ca_ssl.crt + +# we prefer mod_python if available, as first attempts at using mod_wsgi +# turned out less reliable + + + SetHandler mod_python + PythonPath "sys.path + ['/usr/share/plc_api']" + PythonHandler apache.ModPython + + + + + WSGIScriptAlias /$plc_api_path_noslash /usr/share/plc_api/apache/plc.wsgi +# xxx would be cool to be able to tweak this through config + WSGIDaemonProcess plcapi-wsgi-ssl user=apache group=apache processes=1 threads=25 + WSGIProcessGroup plcapi-wsgi-ssl + + + Options +ExecCGI + $(apache_allow) + + + EOF + fi done >$plc_conf @@ -176,7 +199,7 @@ EOF cat < - Deny from all + $(apache_forbid) EOF fi