OpenResty 설정 nginx + lua 개발 환경

1977 단어 OpenRestynginx
OpenResty 설치
=========
1, nginx 프로필 설정 편집: vim / app / services / openresty / nginx / conf / nginx. conf
user  root;
worker_processes  1;

error_log  /app/logs/nginx/error.log;
error_log  /app/logs/nginx/error-notice.log  notice;
error_log  /app/logs/nginx/error-info.log  info;

pid        /app/services/openresty/nginx/logs/nginx.pid;


events {
    worker_connections  1024;
}


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

    #lua_code_cache off;

    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  /app/logs/nginx/access.log  main;
    #      
    rewrite_log on;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    #include             /app/services/openresty/nginx/conf/mime.types;
    #default_type        application/octet-stream;


    lua_package_path "/app/conf/lualib/?.lua;;"; #lua   
    lua_package_cpath "/app/conf/lualib/?.so;;"; #c  

    include /app/conf/nginx/*.conf; #nginx   

}

2, 새 / app / conf 폴 더 openresty 설정 파일 을 놓 습 니 다.
  /app/conf/nginx      nginx     ;
  /app/conf/lualib      lua c     ;

3. 예 를 들 어:
 /app/conf/nginx  lua.conf  :
	server { 
		listen 80; 
		server_name _;
		
		
		location /lua { 
			default_type 'text/html'; 
			content_by_lua_file /app/conf/lualib/test.lua; 
		}
	}

 /app/conf/lualib  test.lua  :
	ngx.say("hehe... hello world by lua!");

nginx -t
nginx -s reload

   http://10.0.2.81/lua,      

4, 캐 시 닫 기
   nginx.conf http    lua_code_cache off;    ,	         lua     reload nginx;              。

좋은 웹페이지 즐겨찾기