njs

aaaa / 84 /

ChatGPT 可用网址,仅供交流学习使用,如对您有所帮助,请收藏并推荐给需要的朋友。
https://ckai.xyz

自定义nginx启动

右键/以管理员身份运行

image.png

切换到nginx路径/运行nginx
cd /Nginx/jc/hhh-nginx-bin
./nginx

image.png

查看是否运动成功

image.png

njs

nginx 安装njs 模块

yum install nginx-module-njs

引用 njs 模块

// nginx.conf
 load_module modules/ngx_http_js_module.so;

 events {}
 http {
 server {}
}

运行

// nginx.conf

 load_module modules/ngx_http_js_module.so;

 events {}

 http {
   js_path "/etc/nginx/njs/";

   js_import index.js;

   server {
     listen 80;

     location / {
       js_content index.hello;
     }
  }
}
// /etc/nginx/njs

function hello(r) {
  r.return(200, "Hello world,  index!");
}

export default { hello };

image.png

image.png


作者
aaaa
许可协议
CC BY 4.0
发布于
2023-08-27
修改于
2024-12-22
Bonnie image
尚未登录