2 つのクラスを含む単純な Cherrypy Web アプリケーションがあります。初期化コードは次のようになります。
c = MyClass()
c.updates = AnotherClass()
app = cherrypy.tree.mount(c, '/', 'myapp.config')
c.setConfig(app.config)
c.updates.setConfig(app.config)
cherrypy.engine.start()
cherrypy.engine.block()
両方のクラスの setConfig メソッドは、データベース構成を格納するための単なるコード行です。
def setConfig(self, conf):
self.config = conf['Database']
構成ファイル myapp.config は次のようになります。
[global]
server.socket_host = "0.0.0.0"
server.socket_port = 80
[/]
tools.staticdir.root = com.stuff.myapp.rootDir + '/html'
[Database]
dbtable: "mydbtable"
username: "user"
password: "pass"
ロットを開始すると、アプリケーションはデータベース構成データを取得し、/html ディレクトリから静的ファイルを正しく提供しますが、8080 の localhost でしかリッスンしません。コンソールに次のように表示されます。
[11/Apr/2013:10:03:58] ENGINE Bus STARTING
[11/Apr/2013:10:03:58] ENGINE Started monitor thread 'Autoreloader'.
[11/Apr/2013:10:03:58] ENGINE Started monitor thread '_TimeoutMonitor'.
[11/Apr/2013:10:03:58] ENGINE Serving on 127.0.0.1:8080
[11/Apr/2013:10:03:58] ENGINE Bus STARTED
私は間違いなく何か悪いことをしたに違いありません。構成のグローバル部分が適用されないかのようです。どうすれば修正できますか?