환경: Mac, Brew 설치
Brew 설치는 설치 완료 후 바로 nginx를 실행할 수 있어 매우 편리합니다.
nginx 설치
다음 모듈 옵션은 다음과 같습니다. 다음 명령을 통해 확인하세요:brew install nginx-full - -with-lua-module
brew options nginx-full
<code>--with-accept-language-module Compile with support <span>for</span> Accept Language module --with-accesskey-module Compile with support <span>for</span> HTTP Access Key module --with-addition Compile with support <span>for</span> HTTP Addition module --with-lua-module Compile with support <span>for</span> LUA module ....</code>설치가 잘못되었거나 다른 것을 시도하고 싶다면 제거하고 다시 설치할 수 있습니다.
Brew uninstall nginx-full(프로세스 중에 다른 종속 항목을 설치해야 하는 경우 Brew를 통해 설치할 수 있습니다. 제가 오랫동안 고민했기 때문입니다. 오랫동안 다른 것을 설치해야 할지 모르겠습니다)
<code>#lua.conf lua_package_path <span>'/usr/local/Cellar/lua51/5.1.5_4/lib/?.lua;;'</span>; #lua 模块 lua_package_cpath <span>'/usr/local/Cellar/lua51/5.1.5_4/lib/?.so;;'</span>; #c模块 server { listen <span>8083</span>; server_name localhost; location /lua{ default_type <span>'text/html'</span>; content_by_lua <span>'ngx.say("hello world")'</span>; } }</code>lua51이 없으면 그냥 Brew 설치
brew install lua51
include conf/*.conf;
nginx -t
<code> nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful</code>
localhost:8083/lua –>hello world궁금하신 점은 메시지 남겨주세요').addClass('pre-numbering').hide (); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });
위 내용은 nginx와 Brew의 내용을 포함하여 nginx-Brew에 의한 lua 모듈 설치를 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.