OpenResty 설정 nginx + lua 개발 환경
=========
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; 。
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
centos 7 nginx 대신 OpenResty 설치centos 7 nginx 대신 OpenResty 설치 1, 의존 하 는 패키지 설치 2, openresty 설치 3, LuaJIT 설치 4, 다운로드 ngxcache_purge 모듈, 이 모듈 은 nginx 캐 시...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.