# 创建一个 NGINX 配置文件(例如 /usr/local/openresty/nginx/conf/nginx.conf)并添加一个包含 Lua 代码的 location 块:server { listen 80; server_name localhost; location /test { content_by_lua_block { ngx.say("Hello, LuaJIT!") } }} 保存配置文件,然后重新加载 NGINX:...
-- ssl_verify:是否验证ssl证书,默认false -- server_name: Specifies the server name for the new TLS extension Server Name Indication (SNI) when connecting over SSL -- pool:连接池名称,如果不设置,默认为host:port、unix-socket-path -- pool_size:连接池大小, 1.如果不设置,并且backlog也没有设置,...
server { listen 80; server_name localhost; location / { default_type text/plain; # 设置获取redis中key为m的值 set $redis_key "m"; redis_pass 127.0.0.1:6379; # 如果发生404,就交由@fetch处理 error_page 404 = @fetch; } location @fetch { root html; } } } 1. 2. 3. 4. 5. 6. ...
后台管理服务虚拟主机#后台管理服务虚拟主机demo server{listen;server_name admin.crazydemo.com;#后台管理服务的域名前缀为admin location/{default_type'text/html';charset utf-8;echo"this is admin server";}}#文件服务虚拟主机demo server{listen;server_name file.crazydemo.com;#文件服务的域名前缀为admin l...
server { listen 80; server_name localhost; location / { default_type text/html; content_by_lua 'ngx.say("hello, world")'; } } } nginx -s reload现在启动nginx,然后访问http://localhost/hello ,如果你之前启动了,那么需要nginx -s reload 通过ngx.say...
server_name localhost; location / { root html; index index.html index.htm; } error_page 404 /404.html; } include vhost/*.conf; } 通过绝对路径包含我们的lua依赖库和nginx项目配置文件。 /usr/luaexample/example.conf配置文件如下 server { ...
server{listen443ssl;server_name mnif.cn;#填写绑定证书的域名 ssl_certificate 2467785_www.mnif.cn_nginx/2467785_www.mnif.cn.pem;ssl_certificate_key 2467785_www.mnif.cn_nginx/2467785_www.mnif.cn.key;ssl_session_cache shared:SSL:1m;ssl_session_timeout 5m;ssl_protocols TLSv1 TLSv1.1TLSv1.2...
server { listen 8010; server_name localhost; proxy_busy_buffers_size 512k; proxy_buffers 4 512k; proxy_buffer_size 256k; # charset koi8-r; # access_log logs/host.access.log main; location /api/ws/ps { proxy_pass http://$DaSocketServer; ...
server { listen 80; # 表示当前的代理服务器监听的端口,默认的是监听80端口。注意,如果我们配置了多个server,这个listen要配置不一样,不然就不能确定转到哪里去了。 server_name javacoo; #静态资源 location .*\.(js|css|ico|png|jpg|eot|svg|ttf|woff) { root html; index index.html index.htm; }...
server_name example.com; location /js_example { js_content main; } } js_include main;functionmain(r) { r.return(200,"Hello, ngx_http_js_module!"); } } 在这个示例中: 定义了一个监听80端口的server块。 在/js_example路径下的请求中,使用了js_content指令,将请求处理的逻辑指定为JavaScript脚本。