2016-08-19 3 views
0

を空にします。私のWSGIの設定は:Pythonの2.7.11とWSGI下popenのを実行して、ModWSGI 4.4.6とApache 2.4.20に戻り、私はこれを行うWSGIアプリケーションを持っている

<VirtualHost *:80> 
     ServerAdmin [email protected] 


     WSGIPassAuthorization On 

     # Deploy as a daemon (avoids conflicts between other python apps). 
     WSGIDaemonProcess formshare python-path=/opt/formshare display-name=formshare processes=2 threads=15 
     WSGIScriptAlias /formshare /opt/formshare/src/formshare/extras/wsgi/formshare.wsgi process-group=formshare application-group=%{GLOBAL} 

     <Location "/formshare"> 
       WSGIProcessGroup formshare 
     </Location> 

     #Output any errors and messages to these files 
     ErrorLog /var/log/httpd/formshare.error.log 
     CustomLog /var/log/httpd/formshare.custom.log combined 

</VirtualHost> 

なぜか?私は異なるWSGIバージョンとWSGIRestrictStdoutを試しましたが、何も動作していないようです。

答えて

0

ここで問題となっていたのは、私がsuを使ってApacheを起動していたことです(私はslackwareを使用しています)。suの下にjavaがありません。私がrootでログインしてApacheを起動すると、すべて正常に動作します。

関連する問題