Add information about Next.js integration mod.

This commit is contained in:
Dorian Niemiec 2024-07-23 21:08:31 +02:00
parent 025edc09f1
commit 2add4c6e33
2 changed files with 16 additions and 1 deletions

View file

@ -8,12 +8,13 @@ SVR.JS has these official SVR.JS mods:
* [**easy-waf integration**](https://downloads.svrjs.org/mods/easywaf.integration.1.2.4.tar.gz) - WAF (web application firewall) mod. ***Latest version: 1.2.4*** * [**easy-waf integration**](https://downloads.svrjs.org/mods/easywaf.integration.1.2.4.tar.gz) - WAF (web application firewall) mod. ***Latest version: 1.2.4***
* [**forward-proxy-mod**](https://downloads.svrjs.org/mods/forward-proxy-mod.1.0.0.tar.gz) - mod, that enables SVR.JS to do forward proxy functionality. ***Latest version: 1.0.0*** * [**forward-proxy-mod**](https://downloads.svrjs.org/mods/forward-proxy-mod.1.0.0.tar.gz) - mod, that enables SVR.JS to do forward proxy functionality. ***Latest version: 1.0.0***
* [**GreenRhombus**](https://downloads.svrjs.org/mods/greenrhombus.fastcgi.1.0.7.tar.gz) - FastCGI (Fast Common Gateway Interface) client. ***Latest version: 1.0.7*** * [**GreenRhombus**](https://downloads.svrjs.org/mods/greenrhombus.fastcgi.1.0.7.tar.gz) - FastCGI (Fast Common Gateway Interface) client. ***Latest version: 1.0.7***
* [**Next.js integration**](https://downloads.svrjs.org/mods/nextjs.integration.1.0.0.tar.gz) - mod, that enables SVR.JS to serve Next.js applications. ***Latest version: 1.0.0***
* [**OrangeCircle**](https://downloads.svrjs.org/mods/orangecircle.scgi.1.2.1.tar.gz) - SCGI (Simple Common Gateway Interface) client. ***Latest version: 1.2.1*** * [**OrangeCircle**](https://downloads.svrjs.org/mods/orangecircle.scgi.1.2.1.tar.gz) - SCGI (Simple Common Gateway Interface) client. ***Latest version: 1.2.1***
* [**RedBrick**](https://downloads.svrjs.org/mods/redbrick.cgi.2.6.2.tar.gz) - CGI (Common Gateway Interface) engine. ***Latest version: 2.6.2*** * [**RedBrick**](https://downloads.svrjs.org/mods/redbrick.cgi.2.6.2.tar.gz) - CGI (Common Gateway Interface) engine. ***Latest version: 2.6.2***
* [**reverse-proxy-mod**](https://downloads.svrjs.org/mods/reverse-proxy-mod.1.1.4.tar.gz) - mod, that enables SVR.JS to do reverse proxy functionality. ***Latest version: 1.1.4*** * [**reverse-proxy-mod**](https://downloads.svrjs.org/mods/reverse-proxy-mod.1.1.4.tar.gz) - mod, that enables SVR.JS to do reverse proxy functionality. ***Latest version: 1.1.4***
* [**YellowSquare**](https://downloads.svrjs.org/mods/yellowsquare.jsgi.1.1.3.tar.gz) - JSGI (JavaScript Gateway Interface) engine. ***Latest version: 1.1.3*** * [**YellowSquare**](https://downloads.svrjs.org/mods/yellowsquare.jsgi.1.1.3.tar.gz) - JSGI (JavaScript Gateway Interface) engine. ***Latest version: 1.1.3***
**All of those mods are licensed under MIT/X11 license.** **All of these mods are licensed under MIT/X11 license.**
## Notes ## Notes
@ -102,6 +103,12 @@ _View the [change log.](/forward-proxy-mod-changelog)_
_Notes are in the [SVR.JS documentation.](/docs#FastCGI-PHP-FPM)_ _Notes are in the [SVR.JS documentation.](/docs#FastCGI-PHP-FPM)_
_View the [change log.](/greenrhombus-changelog)_ _View the [change log.](/greenrhombus-changelog)_
### Next.js integration
The webroot (_wwwroot_ _config.json_ property) serves as a Next.js application directory. Setting a `NODE_ENV` environment variable to `development` in SVR.JS configuration enables Next.js development server.
_View the [change log.](/nextjs-integration-changelog)_
### OrangeCircle ### OrangeCircle
_Notes moved to [SVR.JS documentation.](/docs#CGI-SCGI-JSGI-PHP)_ _Notes moved to [SVR.JS documentation.](/docs#CGI-SCGI-JSGI-PHP)_

View file

@ -0,0 +1,8 @@
---
title: Next.js integration change log
date: 2024-07-24 21:04:00
---
## Next.js integration 1.0.0
_Released in July 24, 2024_
* First Next.js integration release.