com/libs/hxfcgi
Differences between version #10521 and #10522
38c38
< And rename the file, to be accepted as (Fast)CGI binary:
---
> And rename the file, to be accepted as FastCGI binary (for deployment as CGI module it is recommended add the ''.cgi'' extension to the file''):
43c43
< Rename the file to be accepted as (Fast)CGI binary:
---
> Rename the file to be accepted as FastCGI binary (for deployment as CGI module it is recommended add the ''.cgi'' extension to the file''):
52d51
< asdasd
53a53
> This next section is just a guide which shows one of many possible ways to deploy the app on your server!
54a55,79
> **FastCGI:**
> * if not, enable fastcgi module (on debian based system: ''a2enmod fastcgi'')
> * your ''fastcgi.conf'' should look similar to this one:<code><IfModule mod_fastcgi.c>
> AddHandler fastcgi-script .fcgi
> FastCgiIpcDir /var/lib/apache2/fastcgi
> </IfModule></code>
> * if you want to use the fastcgi app as an index page add this: <code>DirectoryIndex index.fcgi</code>
> * your site config should contain:<code><Directory />
> Options ExecCGI
> AddHandler fastcgi-script fcgi
> AllowOverride All
> </Directory></code>
> * upload you ''app.fcgi'' into you webroot
>
>
> **CGI:**
> * if not, enable cgi module (''a2enmod cgi'')
> * if you want to use the cgi app as an index page add this: <code>DirectoryIndex index.cgi</code>
> * copy you file to you script dir
> * or tell Apache to run CGI scripts on you dir:<code><Directory />
> Options +ExecCGI
> AddHandler cgi-script cgi .cgi
> AllowOverride All
> </Directory></code>
>
71a97
> * make sure you have a ''nekoapi.ndll'' according to you platform
| Ver | Date | Lg | User | Action |
|---|---|---|---|---|
| #15869 | 2013-01-28 06:21:02 | en | ianxm | View | Diff |
| #10524 | 2011-05-07 00:22:42 | en | kaalh | View | Diff |
| #10523 | 2011-05-06 19:26:22 | en | TheHippo | View | Diff |
| #10522 | 2011-05-06 18:56:02 | en | TheHippo | View | Diff |
| #10521 | 2011-05-06 17:43:04 | en | TheHippo | View | Diff |
| #10520 | 2011-05-06 17:39:09 | en | TheHippo | View | Diff |
| #10519 | 2011-05-06 15:06:05 | en | TheHippo | View | Diff |
| #10518 | 2011-05-06 14:39:05 | en | TheHippo | View | Diff |
| #10517 | 2011-05-06 13:43:05 | en | TheHippo | View | Diff |
Previous | Next