-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to create a fastCGI in Pascal ? #55
Comments
Can you create a doc for nginx or apache ? |
i'm not maintenaing extpascal but archives of fastcgi.com. if you speak about this project : https://github.com/farshadmohajeri/extpascal i think you use the documentation of the project in : https://github.com/farshadmohajeri/extpascal/tree/master/docs or https://www.freepascal.org/~michael/articles/extpascal/extpascal.pdf in fact extpascal not use fcgi2, seem to support natively fastcgi protocol. |
I want to use your fascgi project in pascal. |
extpascal has native fastcgi in document i sent that not need cgi to fastcgi convertion (cgi-fcgi). cgi-fcgi is to convert old cgi mode (using fork) program to fastcgi is not the prefered and performante solution to do fastcgi, prefer native fastcgi mode in process prefork or pool of thread. php for exemple now start in prefork mode with php_fpm. nginx also has integrated fastcgi support :
you need to start your process standalone in fastcgi mode (fastcgi native or with cgi-fcgi), and configure nginx/apache to talk with it in fastcgi protocol (with tcp or unix socket) with there respective fastcgi module. |
Hello,
I want to adapt ExtPascal to fCGI2.
But the doc is not enough. Can you upgrade the doc we to use not only in C ? Can you upgrade the doc with the new examples ?
The text was updated successfully, but these errors were encountered: