nginx + lua 환경 구축

23200 단어 nginx
Nginx + lua 설치
Linux 에 설치 (centos):
설정 의존 환경
nginx 의 많은 모듈 은 제3자 의 도구 에 의존 해 야 하기 때문에 nginx 를 설치 하기 전에 시스템 환경 을 설정 해 야 합 니 다. 다음은 자주 사용 하 는 도구 의 설정 과 소개 입 니 다.
[root@localhost ~]# yum -y install gcc 

GCC 는 원래 GNU 운영 체제 의 공식 컴 파일 러 로 서 현재 대부분의 유 닉 스 운영 체제 (예 를 들 어 Linux, BSD, Mac OS X 등) 에서 표준 컴 파일 러 로 채택 되 었 으 며 GCC 는 마이크로소프트 윈도 에 도 적용 된다.GCC 는 원래 C 언어 만 처리 할 수 있 었 기 때문에 GNU C 언어 컴 파 일 러 (GNU C Compiler) 라 고 불 렸 다.GCC 는 빠르게 확장 되 어 C + + 를 처리 할 수 있 게 되 었 다.그 후에 더 많은 프로 그래 밍 언어 를 지원 할 수 있 습 니 다. 예 를 들 어 Fortran, Pascal, Objective - C, Java, Ada, Go 와 각종 프로세서 구조 상의 어 셈 블 리 언어 등 이 있 기 때문에 GNU 컴 파 일 러 세트 (GNU Compiler Collection) 로 이름 을 바 꾸 었 습 니 다.
[root@localhost ~]# yum install pcre
[root@localhost ~]# yum install pcre-devel

PCRE (Perl Compatible Regular Expressions) 는 perl 호 환 을 포함 한 정규 표현 식 라 이브 러 리 입 니 다.정규 표현 식 모드 를 실행 할 때 Perl 5 와 같은 문법 과 의 미 를 사용 하 는 것 이 유용 합 니 다.Boost 가 너무 커서 boost regex 를 사용 하면 프로그램의 컴 파일 속도 가 현저히 느 려 집 니 다.같은 프로그램 입 니 다. boost:: regex 를 사용 하여 컴 파일 할 때 3 초 걸 리 고 pcre 를 사용 하 는 데 1 초 미 만 입 니 다.따라서 C 언어 에서 정규 표현 식 을 사용 하 는 문 제 를 pcre 로 해결 합 니 다.
nginx HTTP rewirite 모듈 은 PCRE 에 의존 합 니 다. 설치 되 지 않 으 면 다음 과 같은 오류 가 발생 합 니 다. HTTP rewrite 모듈 은 PCRE 라 이브 러 리 가 필요 합 니 다. - without - http 를 사용 하여 모듈 을 비활성화 할 수 있 습 니 다.rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using –with-pcre= option.
[root@localhost ~]# yum install openssl openssl-devel

OpenSSL 은 보안 소켓 암호 라 이브 러 리 로 주요 암호 알고리즘, 자주 사용 하 는 키 와 인증서 패 키 징 관리 기능 및 SSL 프로 토 콜 을 포함 하고 테스트 나 다른 목적 으로 사용 할 수 있 는 다양한 응용 프로그램 을 제공 합 니 다.
SSL 모듈 은 OpenSsl 라 이브 러 리 에 의존 하 므 로 openssl 및 openssl - devel 을 설치 해 야 합 니 다. 설치 되 지 않 으 면 다음 과 같은 오류 가 발생 합 니 다. SSL 모듈 은 OpenSSL 라 이브 러 리 가 필요 합 니 다. 모듈 을 사용 하지 않도록 설정 하거나 OpenSSL 라 이브 러 리 를 시스템 에 설치 하거나 nginx 를 사용 하여 소스 에서 정적 으로 OpenSSL 라 이브 러 리 를 빌 드 할 수 있 습 니 다 – with - openssl = option.
[root@localhost ~]# wget http://luajit.org/download/LuaJIT-2.0.5.tar.gz
[root@localhost ~]# tar zxvf LuaJIT-2.0.5.tar.gz
[root@localhost ~]# cd LuaJIT-2.0.5
[root@localhost ~]# make && sudo make install

LuaJIT is a Just - In - Time Compilerfor the Lua programming language. LuaJIT 는 Lua 실행 환경, 즉 C 언어 로 작 성 된 Lua 코드 의 해석 기 입 니 다.
모듈 통합 및 설치
관련 패키지 다운로드
다운로드 nginx 의존 모듈 nginx, ngxdevel_kit, lua-nginx-module
wget https://github.com/simpl/ngx_devel_kit/tarball/master -O simpl-ngx_devel_kit.tar.gz 
wget https://github.com/agentzh/echo-nginx-module/tarball/master -O echo-nginx-module.tar.gz 
wget https://github.com/chaoslawful/lua-nginx-module/tarball/master -O lua-nginx-module.tar.gz 

스트레스 를 풀다
tar zxvf nginx-1.2.2.tar.gz
tar zxvf simpl-ngx_devel_kit.tar.gz 
tar zxvf lua-nginx-module.tar.gz

nginx 를 다운로드 하고 설치 패키지 디 렉 터 리 에 압축 을 풀 고 들 어 갑 니 다.
wget http://nginx.org/download/nginx-1.10.3.tar.gz
tar zxvf nginx-1.10.3.tar.gz 
cd nginx-1.10.3

설치 전 설정
다음 명령 을 실행 하면 nginx 설치 정 보 를 설정 할 수 있 습 니 다:
[root@localhost nginx-1.10.3]# ./configure --with-debug --with-http_gzip_static_module --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --prefix=/usr/local/nginx --add-module=../simpl-ngx_devel_kit-e443262 --add-module=../openresty-lua-nginx-module-e80d292 --add-module=../openresty-echo-nginx-module-7740e11

명령 해석:

--with***                       /     ,     
  --with-http_realip_module       ip  
  --with-pcre               Perl       
  --with-luajit                luajit  

--add-module
  --add-module=../simpl-ngx_devel_kit-e44326
  --add-module=../openresty-lua-nginx-module-e80d292
  --add-module=../openresty-echo-nginx-module-7740e11
  =    module

--prefix=/usr/local/nginx          

설정 이 정확 하면 다음 과 같은 알림 이 나타 납 니 다.
...
Configuration summary
  + using system PCRE library
  + using system OpenSSL library
  + md5: using OpenSSL library
  + sha1: using OpenSSL library
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx modules path: "/usr/local/nginx/modules"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"

설정 오류 가 발생 하면 오류 알림 이 표 시 됩 니 다. 위 설정 에 따라 OpenSSL 을 올 바 르 게 설치 하지 않 으 면 다음 과 같은 알림 이 표 시 됩 니 다.
./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl= option.

컴 파일 설치
설정 이 올 바른 지 확인 한 후 컴 파일 을 실행 합 니 다.
make && make install

컴 파일 이 완료 되면 명령 을 실행 하여 버 전 을 봅 니 다.
[root@localhost ~]# /usr/local/nginx/sbin/nginx -v
nginx version: nginx/1.10.3

여기에서 자주 발생 하 는 오류
# /usr/local/nginx-1.4.2/sbin/nginx -v
./objs/nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory

해결 방법:
# ln -s /usr/local/lib/libluajit-5.1.so.2 /lib64/libluajit-5.1.so.2

설치 검증 (hello world)
설치 에 성공 하면 nginx 의 sbin 디 렉 터 리 에서 nginx 를 실행 할 수 있 습 니 다. 다음 명령 을 실행 하고 nginx 를 시작 할 수 있 습 니 다.
[root@localhost nginx]# /usr/local/nginx/sbin/nginx

시작 후 프로 세 스 검사 가능
[root@localhost nginx]# ps -ef|grep nginx
root     25859     1  0 17:04 ?        00:00:00 nginx: master process ./sbin/nginx
nobody   25860 25859  0 17:04 ?        00:00:00 nginx: worker process
root     25862 25048  0 17:04 pts/2    00:00:00 grep --color=auto nginx

기본 설정 연결 및 포트 127.0.0.1: 80 (80 생략 가능) 에 접근 하면 다음 환영 페이지 (Welcome to nginx!) 가 나타 나 면 nginx 설치 에 성공 합 니 다!
[root@localhost nginx]# curl 127.0.0.1:80

<html>
<head>
<title>Welcome to nginx!title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
style>
head>
<body>
<h1>Welcome to nginx!h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.orga>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.coma>.p>

<p><em>Thank you for using nginx.em>p>
body>
html>

다음은 lua 로 hello World 를 써 서 lua 모듈 이 성공 적 으로 통합 되 었 는 지 검증 합 니 다.nginx. conf 를 수정 하고 lua 코드 를 추가 하 며 다음 설정 을 추가 합 니 다.
location ~* ^/hello(/.*) {
      default_type 'text/plain';
      content_by_lua 'ngx.say("hello,world !")';
}

전체 설정 참조
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        location ~* ^/hello(/.*) {
            default_type 'text/plain';
            content_by_lua 'ngx.say("hello,world !")';
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}


수정 후 다음 명령 을 실행 하여 nginx 설정 을 새로 고 칩 니 다 (수 정 된 설정 내용 을 불 러 옵 니 다)
[root@localhost ~]# /usr/local/nginx/sbin/nginx -s reload

curl 접근 인증 사용 하기
[root@localhost ~]# curl 127.0.0.1/hello/
hello,world!

hello World 가 나타 나 서 새 대문 을 두 드 린 것 을 축하합니다!
튜 토리 얼 끝!

좋은 웹페이지 즐겨찾기