チェリーピー アプリケーションを作成しましたが、SSL が必要になりました。私はapache/wsgiで作業しており、動作中のpythonファイルを実行してページを返しています。今、私は POST を機能させようとしています。
これは私の作業スクリプトです:
import sys
sys.stdout = sys.stderr
import atexit
import threading
import cherrypy
cherrypy.config.update({'environment': 'embedded'})
if cherrypy.engine.state == 0:
cherrypy.engine.start(blocking=False)
atexit.register(cherrypy.engine.stop)
class Root(object):
def index(self):
# restrict access by ip address
clientIP = cherrypy.request.headers["Remote-Addr"]
if clientIP not in self.allowedIPs:
return "Access Denied"
return cherrypy.url()
index.exposed = True
allowedIPs = ["127.0.0.1", "192.168.174.1"]
application = cherrypy.Application(Root(), None)
投稿をキャッチするために変更を加えた場合:
class Root(object):
def index(self, files):
次のエラーが表示されます。
<h2>404 Not Found</h2>
<p>Nothing matches the given URI</p>
私のApache設定、
WSGISocketPrefix run/wsgi
NameVirtualHost *:443
<VirtualHost *:443>
DocumentRoot /var/www/ssl_html
ServerName 192.168.174.130:443
ServerAlias 192.168.174.130
SSLEngine On
SSLCertificateFile /etc/ssl/certs/devel.crt
SSLCertificateKeyFile /etc/ssl/certs/devel.key
<Location />
SSLRequireSSL
</Location>
WSGIDaemonProcess 192.168.174.130 processes=2 threads=15 display-name=%{GROUP}
WSGIProcessGroup 192.168.174.130
WSGIScriptAlias / /var/www/wsgi-scripts/helloWorld.py
</VirtualHost>
どんな助けでも大歓迎です!:)