Quantcast
Channel: Nginx Forum
↧

[njs] Test262: making "fs" module required.

details: https://github.com/nginx/njs/commit/958f8f095b6a302c746c51a16819ce91f8ec8458 branches: master commit: 958f8f095b6a302c746c51a16819ce91f8ec8458 user: Dmitry Volyntsev <xeioex@nginx.com>...

View Article


[njs] QuickJS: added fs module.

details: https://github.com/nginx/njs/commit/1f8f9992d03e2865f354da3415f8a49931cf2fe8 branches: master commit: 1f8f9992d03e2865f354da3415f8a49931cf2fe8 user: Dmitry Volyntsev <xeioex@nginx.com>...

View Article


[unit] .mailmap: Add an entry for Igor

details: https://github.com/nginx/unit/commit/1b88304fe53a4a414d84548fbfabac2827125485 branches: master commit: 1b88304fe53a4a414d84548fbfabac2827125485 user: Andrew Clayton <a.clayton@nginx.com>...

View Article

[unit] tools/unitctl: Update for version 1.34.0

details: https://github.com/nginx/unit/commit/fe9be6cdefe9300a845612e3be772f5eee9dcf40 branches: master commit: fe9be6cdefe9300a845612e3be772f5eee9dcf40 user: Andrew Clayton <a.clayton@nginx.com>...

View Article

[unit] docs/unit-openapi.yaml: Update version for 1.34.0

details: https://github.com/nginx/unit/commit/ecb0f21d5d920878b97e0ae41c7eaf09cc796cfd branches: master commit: ecb0f21d5d920878b97e0ae41c7eaf09cc796cfd user: Andrew Clayton <a.clayton@nginx.com>...

View Article


[unit] docs/changes.xml: Add 1.34.0 changelog entries

details: https://github.com/nginx/unit/commit/5a28c663a7bc39f0703f5f485d757fd33de360a6 branches: master commit: 5a28c663a7bc39f0703f5f485d757fd33de360a6 user: Andrew Clayton <a.clayton@nginx.com>...

View Article

[unit] Add 1.34.0 CHANGES

details: https://github.com/nginx/unit/commit/27bde184dedcbf687db2f314c60c037623318a8d branches: master commit: 27bde184dedcbf687db2f314c60c037623318a8d user: Andrew Clayton <a.clayton@nginx.com>...

View Article

[unit] pkg/docker: Update dockerfiles for 1.34.0

details: https://github.com/nginx/unit/commit/962752f57fe268234f29ed287cad4e6582736ca7 branches: master commit: 962752f57fe268234f29ed287cad4e6582736ca7 user: Andrew Clayton <a.clayton@nginx.com>...

View Article


[unit] Annotated tag created: 1.34.0

details: https://github.com/nginx/unit/releases/tag/1.34.0 branches: commit: 27bde184dedcbf687db2f314c60c037623318a8d user: Andrew Clayton <a.clayton@nginx.com> date: Thu Dec 19 13:13:44 2024...

View Article


Re: [unit] Annotated tag created: 1.34.0

Sorry for the spam from the unrelated repo.  This was a bug in the automated diff sender we have and is now fixed. On 19/12/2024 12:19 PM, noreply@nginx.com wrote: > details:...

View Article

Ingress nginx on k8s as TCP proxy for external, non-k8s service - possible ?

Hello everyone, I have one AWS account with two VPCs: VPC-1 and VPC-2. They are connected through a PrivateLink (and cannot change that). There is a TCP (layer-4 - not http/https !) network traffic...

View Article

[nginx] Updated security policy to clarify experimental features.

details: https://github.com/nginx/nginx/commit/c73fb273acc31bff7c4e469efda5f3fd66c48557 branches: master commit: c73fb273acc31bff7c4e469efda5f3fd66c48557 user: Jordan Zebor <j.zebor@f5.com> date:...

View Article

[nginx] QUIC: ignore version negotiation packets.

details: https://github.com/nginx/nginx/commit/a52ba8ba0e349585e49073c168e423c12abcf597 branches: master commit: a52ba8ba0e349585e49073c168e423c12abcf597 user: Roman Arutyunyan <arut@nginx.com>...

View Article


[nginx] QUIC: fixed accessing a released stream.

details: https://github.com/nginx/nginx/commit/e3a9b6ad08a86e799a3d77da3f2fc507d3c9699e branches: master commit: e3a9b6ad08a86e799a3d77da3f2fc507d3c9699e user: Roman Arutyunyan <arut@nginx.com>...

View Article

nginx and python script

Hello, i am a newbee from nginx. I need to run a python script via cgi-bin. I search for information about python and nginx, and found fcgiwrap und uwsig. I test uwsig (as cgi-bin), but there i become...

View Article


Re: nginx and python script

Pass {serial} to your proxy from a normal nginx args variable. location /another_script { proxy_pass http://server/cgi-bin/another_script.py? http://server/cgi-bin/another_script.py?%7Bserial%7D$args }...

View Article

Re: nginx and python script

Hi Jeff, /i am not shure, that this will be run ok. That was not the full line to call. I had think, that was only something to change in fcgiwrap. This was a part from a ZTP . Here the full python...

View Article


Reverse-proxy, mix layer 4 & layer 7, use SNI

I have a couple of VPS's running AlmaLinux 9.x with RPM NGINX as a reverse-proxy, that I use as my personal web proxies. I want to add OpenConnect (ocserv) as a backend service so that I can use these...

View Article

Multiple domains templating

Hello Coming from Caddy there is a feature where I can include a file passing arguments to the file, hence designing template files is very neat and straigthforward Imagine I have 100 domains,...

View Article

[njs] Version bump.

details: https://github.com/nginx/njs/commit/4fb1c0ca6c950dc0460eaeec1ba3e96a53070878 branches: master commit: 4fb1c0ca6c950dc0460eaeec1ba3e96a53070878 user: Dmitry Volyntsev <xeioex@nginx.com>...

View Article

[njs] Modules: removed extra VM creation per server.

details: https://github.com/nginx/njs/commit/855aa4c9fac01bd9fbdb1602b523edc00117ff09 branches: master commit: 855aa4c9fac01bd9fbdb1602b523edc00117ff09 user: Dmitry Volyntsev <xeioex@nginx.com>...

View Article


Re: nginx and python script

Hi, On Fri, Dec 27, 2024 at 10:15:15PM +0100, Ralf Figge via nginx wrote: [...] > > i am a newbee from nginx. I need to run a python script via cgi-bin. That isn't nginx business to run cgi-bin...

View Article


[nginx] Year 2025.

details: https://github.com/nginx/nginx/commit/febe6e728ff83cfc5d5bcc0c74b4d8d63dc296b0 branches: master commit: febe6e728ff83cfc5d5bcc0c74b4d8d63dc296b0 user: Roman Arutyunyan <arut@nginx.com>...

View Article

[nginx] Gzip: compatibility with recent zlib-ng 2.2.x versions.

details: https://github.com/nginx/nginx/commit/57d54fd922e7ecbebb78598d13adc9df1a4b69c0 branches: master commit: 57d54fd922e7ecbebb78598d13adc9df1a4b69c0 user: Sergey Kandaurov...

View Article

virtual host custom error page fails to display

hi there. an nginx neophyte here. i seem to have a problem having my custom error page display for my virtual host. the error page (error.html) resides in /some/path/outside/of/var/www/html/ the custom...

View Article


[njs] 2025 year.

details: https://github.com/nginx/njs/commit/17676e5c9a9f5bdd63509632c31a9019686b171e branches: master commit: 17676e5c9a9f5bdd63509632c31a9019686b171e user: Dmitry Volyntsev <xeioex@nginx.com>...

View Article

[njs] Version 0.8.9.

details: https://github.com/nginx/njs/commit/b87ad67adb2c557bd96e52a3221748a7ba028858 branches: master commit: b87ad67adb2c557bd96e52a3221748a7ba028858 user: Dmitry Volyntsev <xeioex@nginx.com>...

View Article

[njs] Lightweight tag created: 0.8.9

details: https://github.com/nginx/njs/releases/tag/0.8.9 branches: commit: b87ad67adb2c557bd96e52a3221748a7ba028858 user: Dmitry Volyntsev <xeioex@nginx.com> date: Mon Jan 13 14:56:10 2025 -0800...

View Article

[nginx-announce] njs-0.8.9

Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). This release introduced file system module for QuickJS engine. Learn more about njs: - Overview and introduction:...

View Article



njs-0.8.9

Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). This release introduced file system module for QuickJS engine. Learn more about njs: - Overview and introduction:...

View Article


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>