コード例 #1
0
ファイル: server.py プロジェクト: claudiuperta/neubot
    def configure(self, conf):
        """ Configure rendezvous server """

        #
        # Ensure that the rootdir is empty, but do that on
        # a copy of the original settings, just in case any
        # other module needs the original setting.
        #
        conf = conf.copy()
        conf["http.server.rootdir"] = ""

        ServerHTTP.configure(self, conf)
コード例 #2
0
ファイル: server.py プロジェクト: ClaudioArtusio/neubot
 def configure(self, conf, measurer=None):
     conf["http.server.rootdir"] = ""
     ServerHTTP.configure(self, conf, measurer)
コード例 #3
0
ファイル: server.py プロジェクト: DavideAllavena/neubot
 def configure(self, conf):
     conf["http.server.rootdir"] = ""
     ServerHTTP.configure(self, conf)