Webサービス: January 2009 Archives

HDEラボの桜井です。
「まいど1号」が無事軌道に乗ったようですね。

今日は、ちょっとしたことで、前回書いた記事のWebサーバにSSL機能を追加してみようと思います。

まず、ライブラリを読み込みます。
from twisted.internet import ssl


それから、下記のようにサーバを設定します。
# SSL証明書の設定
sslContext = ssl.DefaultOpenSSLContextFactory(秘密鍵のパス, 証明書のパス)

# SSLサーバの定義(site変数は、前回の記事で出てくる変数)
sslServer = internet.SSLServer(443, site, sslContext)

# SSL対応Webサーバの開始(application変数も前回のもの)
sslServer.setServiceParent(application)


いろいろ用途も考えられるかと思いますので、この際にTwistedを試してみてください。

About this Archive

This page is a archive of entries in the Webサービス category from January 2009.

Webサービス: April 2008 is the previous archive.

Webサービス: June 2009 is the next archive.

Find recent content on the main index or look in the archives to find all content.