search
HomeOperation and MaintenanceNginxAnalysis of nginScript examples of nginx

Analysis of nginScript examples of nginx

May 20, 2023 am 09:52 AM
nginxnginscript

Let’s briefly talk about nginx

nginx [engine x] is the most popular and best web server and reverse proxy server in the world. According to statistics from third-party companies, at least 23% of servers around the world currently use nginx, and of course this number is still expanding. It is also the first choice for domestic BAT, so this is why we paid attention to it for the first time.

nginx can mainly do the following:

1. Working on the seventh layer of tcp, it can analyze and process all contents of the http protocol.
2. Support lua, perl, javascript dynamic language
3. Support third-party plug-ins

Let’s talk about nginscript

1. nginscript is javascript/ecmascript subset. It implements most of the capabilities of the JavaScript language, does not fully comply with the ECMAScript standard, and abandons the more difficult parts of JavaScript.

2. nginscript is not implemented through the v8 engine. Instead, it is implemented through a small virtual machine (vm) that is smaller, has lower energy consumption, and is more suitable for nginx application scenarios. It can be understood that nginx implements its own set of lexical analysis.

3. nginscript runs in the nginx configuration file. For example: in the nginx.conf file. Therefore, nginscript can complete everything that traditional configuration files can handle, and at the same time, it can make configuration management dynamic. This is also the most important reason for the emergence of nginscript.

4. nginscript exists as an nginx plug-in. The plug-in name is: njs. Like other nginx plug-ins, we need to recompile nginx to complete the installation.

5. nginscript is currently in early development status. You can communicate with the nginx team and put forward your demands through email.

How to install nginscript

Just follow the official steps here:

// 1. Download The latest nginx package, the address can be seen: wget //2. Unzip tar -xzvf nginx-1.9.4.tar.gz //3. Get the nginscript module through mercurial. If mercurial is not installed here, you need to run yum install mercurial hg clone

//4. Compile nginx. Only the njs module is specified here. Remember to install other required modules together. If you have not compiled nginx, some dependent modules require yum installation, please search for them yourself. cd nginx-1.9.4 ./configure --add-module=../njs/nginx --prefix=/usr/local make make install ok. Now the installation is complete and we can start playing.

Specific how to use nginscript

The use of nginscript mainly adds 2 instructions to the nginx configuration system. The specific instructions are:

js_set, set the variable value in the configuration

js_run, directly execute the configuration rules

1. First look at js_set in nginx.conf How does it work?

http {
 js_set $msg"
   var str = 'hello,imweb';
   // javascript str;
 ";
 server {
  ...
  location /{
   return 200 $msg;
  }
 }
}

Result:

Analysis of nginScript examples of nginx

In the above example, it can be seen that we can set variable values ​​​​to nginx through js at will. These variables can be used in various places in nginx configuration. For example: proxy_pass, limit_req_zone, and sub_filter. Compared with the previous configuration, the flexibility here has been greatly improved.

2. The running rules and scenarios of js_run

js_run is run in the location instruction, and the corresponding javascript will be executed if it matches the path of the specified location
js_run Yes Directly generate the content returned by http through javascript
Here is a specific example:

location /imwebteam {
 js_run "
  var res;
  res = $r.response;
  res.status = 200;
  res.send('hello,imweb!');
  res.finish();
 ";
}

This result is the same as the first result. I won’t go into details here.

3. In addition to processing the two instructions, there is also an important variable $r

Through js_set and js_run, you can have complete control over the http request request. Control The way is to use the variable $r. What's in $r can be seen with the following simple example.

http {
 js_set $summary "
 var a, s, h;
 s = 'js summary\n\n';
 s += 'method: ' + $r.method + '\n';
 s += 'http version: ' + $r.httpversion + '\n';
 s += 'host: ' + $r.headers.host + '\n';
 s += 'remote address: ' + $r.remoteaddress + '\n';
 s += 'uri: ' + $r.uri + '\n';
 s += 'headers:\n';
 for (h in $r.headers) {
  s += ' header \"' + h + '\" is \"' + $r.headers[h] + '\"\n';
 }
 s += 'args:\n';
 for (a in $r.args) {
  s += ' arg \"' + a + '\" is \"' + $r.args[a] + '\"\n';
 }
 s;
 ";
 server {
 listen 8000;
 location /imwebteam{
  return 200 $summary;
 }
}

The result is as shown in the figure:

Analysis of nginScript examples of nginx

nginscript’s current problems

After the above introduction, I believe Everyone already has a basic understanding of nginscript. So let's take a look at what problems this newborn has.

First of all, the debugging method is weak. At present, it is still relatively primitive and is displayed through logs, and the detail of the error log is very unsatisfactory.
Secondly, the control is weak. At present, nginscript's processing power is limited to the processing of http requests and returning responses. It is not yet able to dynamically process some content other than nginx requests, such as dynamic user data or dynamic updates of forwarding configuration tables.
Finally, the overall implementation is weak. The overall structure is relatively simple. The running environments of js_run and js_set are inconsistent. The code segment where js_set executes ok will cause some exceptions on js_run.
In summary, nginscript is still a newborn with great wishes and prospects. It takes some time to polish and optimize. I also hope that everyone will provide more opinions and feedback, and even submit your own plug-ins. This allows it to grow better.

The above is the detailed content of Analysis of nginScript examples of nginx. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
Using NGINX: Optimizing Website Performance and ReliabilityUsing NGINX: Optimizing Website Performance and ReliabilityMay 09, 2025 am 12:19 AM

NGINX can improve website performance and reliability by: 1. Process static content as a web server; 2. forward requests as a reverse proxy server; 3. allocate requests as a load balancer; 4. Reduce backend pressure as a cache server. NGINX can significantly improve website performance through configuration optimizations such as enabling Gzip compression and adjusting connection pooling.

NGINX's Purpose: Serving Web Content and MoreNGINX's Purpose: Serving Web Content and MoreMay 08, 2025 am 12:07 AM

NGINXserveswebcontentandactsasareverseproxy,loadbalancer,andmore.1)ItefficientlyservesstaticcontentlikeHTMLandimages.2)Itfunctionsasareverseproxyandloadbalancer,distributingtrafficacrossservers.3)NGINXenhancesperformancethroughcaching.4)Itofferssecur

NGINX Unit: Streamlining Application DeploymentNGINX Unit: Streamlining Application DeploymentMay 07, 2025 am 12:08 AM

NGINXUnit simplifies application deployment with dynamic configuration and multilingual support. 1) Dynamic configuration can be modified without restarting the server. 2) Supports multiple programming languages, such as Python, PHP, and Java. 3) Adopt asynchronous non-blocking I/O model to improve high concurrency processing performance.

NGINX's Impact: Web Servers and BeyondNGINX's Impact: Web Servers and BeyondMay 06, 2025 am 12:05 AM

NGINX initially solved the C10K problem and has now developed into an all-rounder who handles load balancing, reverse proxying and API gateways. 1) It is well-known for event-driven and non-blocking architectures and is suitable for high concurrency. 2) NGINX can be used as an HTTP and reverse proxy server, supporting IMAP/POP3. 3) Its working principle is based on event-driven and asynchronous I/O models, improving performance. 4) Basic usage includes configuring virtual hosts and load balancing, and advanced usage involves complex load balancing and caching strategies. 5) Common errors include configuration syntax errors and permission issues, and debugging skills include using nginx-t command and stub_status module. 6) Performance optimization suggestions include adjusting worker parameters, using gzip compression and

Nginx Troubleshooting: Diagnosing and Resolving Common ErrorsNginx Troubleshooting: Diagnosing and Resolving Common ErrorsMay 05, 2025 am 12:09 AM

Diagnosis and solutions for common errors of Nginx include: 1. View log files, 2. Adjust configuration files, 3. Optimize performance. By analyzing logs, adjusting timeout settings and optimizing cache and load balancing, errors such as 404, 502, 504 can be effectively resolved to improve website stability and performance.

Deploying Applications with NGINX Unit: A GuideDeploying Applications with NGINX Unit: A GuideMay 04, 2025 am 12:03 AM

NGINXUnitischosenfordeployingapplicationsduetoitsflexibility,easeofuse,andabilitytohandledynamicapplications.1)ItsupportsmultipleprogramminglanguageslikePython,PHP,Node.js,andJava.2)Itallowsdynamicreconfigurationwithoutdowntime.3)ItusesJSONforconfigu

NGINX and Web Hosting: Serving Files and Managing TrafficNGINX and Web Hosting: Serving Files and Managing TrafficMay 03, 2025 am 12:14 AM

NGINX can be used to serve files and manage traffic. 1) Configure NGINX service static files: define the listening port and file directory. 2) Implement load balancing and traffic management: Use upstream module and cache policies to optimize performance.

NGINX vs. Apache: Comparing Web Server TechnologiesNGINX vs. Apache: Comparing Web Server TechnologiesMay 02, 2025 am 12:08 AM

NGINX is suitable for handling high concurrency and static content, while Apache is suitable for dynamic content and complex URL rewrites. 1.NGINX adopts an event-driven model, suitable for high concurrency. 2. Apache uses process or thread model, which is suitable for dynamic content. 3. NGINX configuration is simple, Apache configuration is complex but more flexible.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools