4
使用webmachine獲得https的推薦方式是什麼?帶有http和https的Webmachine?
我看到有一個獲得mochiweb working with https and http的例子。我似乎可以把它翻譯成webmachine。特別是你如何在一個應用程序中處理http和https請求。
使用webmachine獲得https的推薦方式是什麼?帶有http和https的Webmachine?
我看到有一個獲得mochiweb working with https and http的例子。我似乎可以把它翻譯成webmachine。特別是你如何在一個應用程序中處理http和https請求。
我有一些成功獲取多個監聽器,下面的演示程序中的mywebdemo_sup.erl更改。我還沒有做過比這更進一步的測試,但希望足以讓你開始。
init([]) ->
Ip = case os:getenv("WEBMACHINE_IP") of false -> "0.0.0.0"; Any -> Any end,
{ok, Dispatch} = file:consult(filename:join(
[filename:dirname(code:which(?MODULE)),
"..", "priv", "dispatch.conf"])),
WebConfig = [
{name, one},
{ip, Ip},
{port, 8000},
{log_dir, "priv/log"},
{dispatch, Dispatch}],
Web = {one,
{webmachine_mochiweb, start, [WebConfig]},
permanent, 5000, worker, dynamic},
WebSSLConfig = [
{name, two},
{ip, Ip},
{port, 8443},
{ssl, true},
{ssl_opts, [{certfile, "/tmp/api_server.crt"},
{cacertfile,"tmp/api_server.ca.crt"},
{keyfile, "/tmp/api_server.key"}]},
{log_dir, "priv/log"},
{dispatch, Dispatch}],
WebSSL = {two,
{webmachine_mochiweb, start, [WebSSLConfig]},
permanent, 5000, worker, dynamic},
Processes = [Web, WebSSL],
{ok, { {one_for_one, 10, 10}, Processes} }.
非常感謝你,我會試一試。 – noenzyme 2011-03-06 21:56:41
工程就像一個魅力!謝謝。 – noenzyme 2011-03-06 22:58:31