Questions tagged [mod-fastcgi]

mod-fastcgi is an Apache module providing support for the FastCGI protocol.

mod-fastcgi is an Apache module providing support for the FastCGI protocol.

http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html

72 questions
1
vote
1 answer

lighttpd + mod_fastcgi + django

I am having trouble deploying my django app to a server that uses lighttpd (on which I'm root.) Here's my lighttpd.conf: server.modules = ( # "mod_access", …
cpa
  • 3,742
  • 4
  • 16
  • 22
1
vote
0 answers

opening a socket in mod_fastcgi process in c

I am using mod_fastcgi with apache webserver, I have made a module in c which cater fastcgi request and also act as TCP Server which communicate with some other module-x acting as client. It works fine when only one such module runs. But when i…
0
votes
1 answer

lighttpd daemon failed to start after adding python support to read from cgi-bin

getting python to run from cgi-bin causes lighttpd daemon failed to start $HTTP["url"] =~ "^/cgi-bin/" { alias.url += ( "/cgi-bin/" => "/var/www/cgi-bin" ) cgi.assign = (".py" => "/usr/bin/python") } Am I doing something wrong I also have…
Ciasto piekarz
  • 7,853
  • 18
  • 101
  • 197
0
votes
1 answer

Apache does not execute .fcg file

I made the most basic fastcgi program using fastcgipp. I copied it into the /var/www/cgi-bin. I then went to /etc/httpd/conf/httpd.conf. I replaced: AllowOverride None Options None Require all…
Hemil
  • 916
  • 9
  • 27
0
votes
1 answer

Apache2, FastCGI, PHP5 and urls without .php sufix

I have to configure my Apache2 server to host an old web application, based on Joomla 1.5. Apache is running on Debian Stretch, with PHP 7 as mod_php. I manage to install PHP 5.6 as FastCgi module and it looks like working as an alternative to PHP…
0
votes
1 answer

Apache installation with mod_fcgi for httpd24 centos 6.9

I have installed php and apache in my centos 6.9 for apache version 2.4 and php version 5.6 as below: yum install epel-release rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm yum install epel-release yum repolist yum…
aniruddha
  • 689
  • 8
  • 29
0
votes
1 answer

lighttpd and mod_fastcgi shows page download

I am using mod_fastcgi to serve a web application from lighttpd webserver. Static Pages are being served fine, but serving dynamic content from mod_fastcgi, page gets downloaded in place of rendering. my lighttpd.conf server.modules = ( …
Ekayaa
  • 169
  • 16
0
votes
1 answer

PHP request on self

I experience problem with PHP request on self. In example I will use file_get_contents() but same happen for exec('wkhtmltopdf [*SELF*]') or curl() lets name my server example.com apache2 installed FastCGI (multiple PHP versions 5.3, 5.4, 5.5,…
Nedvajz
  • 891
  • 8
  • 13
0
votes
1 answer

Using lighttpd to send requests to TCP socket

This is my first set up of a webserver, so it's an experimental learning experience. I had successfully got lighttpd using mod_fastcgi (https://redmine.lighttpd.net/projects/1/wiki/docs_modfastcgi) working to send a request to a separate process via…
Jetski S-type
  • 1,138
  • 2
  • 16
  • 32
0
votes
2 answers

PHP/Apache Error 500 issue with if statement

I have a php script which allows users to select certain rewards when they reach a certain amount of points. They select the reward they would like using a select dropdown menu.