首頁 > 後端開發 > php教程 > [openresty] 你好世界

[openresty] 你好世界

WBOY
發布: 2016-07-29 09:09:50
原創
1078 人瀏覽過

[openresty] hello world

openresty軟體部署

不說了,和nginx差不多的。

content_by_lua指令

可以用content_by_lua指令將一段lua程式碼包含到nginx裡面去執行,例如下面最簡單的呼叫ngx.say來輸出Hello world。

<code>    location / {
            default_type <span>text</span>/html;
            content_by_lua '
                ngx.<span>say</span>(<span>"<p>hello, world</p>"</span>)
            ';
        }
</code>
登入後複製

長一些的程式碼適合用rewrite_by_lua_file

後面就跟一個path路徑

<code>    location / {    
            content_by_lua_file lua/hello.lua;
        }

[root<span>@test</span> nginx]<span># cat lua/hello.lua</span>
ngx.<span>say</span>(<span>"<p>hello, world!!! hey man</p>"</span>)        </code>
登入後複製

lua_code_cache

預設nginx對lua程式碼段有一層緩存,提高了後效率,以後也讓我們每次修改完效率reload nginx才能生效,這時候我們可以關掉cache,即時生效,等到調試完畢以後再打開。

<code>lua_code_cache <span>off</span>;</code>
登入後複製
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介紹了[openresty] hello world,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板