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
4
votes
1 answer

HHVM through Apache mod_fastcgi on debian

I've been able to rather easily get facebooks hhvm working from prebuilt debian packages as well as compile it, and afterwards to run it behind apache as a proxy. The problem with the proxy setup is though, that I can't get response headers other…
griffin
  • 1,261
  • 8
  • 24
4
votes
3 answers

apache2 FastCGI comm with dynamic server aborted first read idle timeout

Summary: Unable to run any of the most simple “Hello World” FastCGI script, any request always terminating into a time out. Seems there is no communication at all between the server and the FastCGI scripts (using dynamic FastCGI scripts). The…
Hibou57
  • 6,870
  • 6
  • 52
  • 56
4
votes
1 answer

FastCGI with Ada

I found http://support.zeus.com/zws/examples/2005/12/16/hello_world_in_perl_and_c and this two examples are working. Now I tried this for Ada and I can not get it done since 2 days. fcgi_stdio.ads with Interfaces.C; with…
user1091344
  • 612
  • 6
  • 27
4
votes
3 answers

CentOS mod_fastcgi

I have server with installed CentOS 6.2 with nginx and php-fpm from remi repos httpd also installed, but when I try to install mod_fastcgi yum sais that no pachage availiable How I can install mod_fastcgi??? Googling different sites says that…
Sergey
  • 258
  • 1
  • 9
  • 20
3
votes
2 answers

django - nginx+fastcgi --> Unhandled Exception (after upgrade from Django 1.2.4 to Django 1.3)

I just upgraded from django 1.2.4 to 1.3. I'm using nginx in conjunction with fastcgi and for some reason every time when I access a page I get this error: Unhandled Exception An unhandled exception was thrown by the application. Any ideas what…
avatar
  • 12,087
  • 17
  • 66
  • 82
3
votes
2 answers

PHP fastcgi returns 403 on Lighttpd server

I've been agonizing over this issue for the past day now. I've setup lighty on my server and it serves static files fine but keeps giving me 403 on php files. I've gone through every tutorial, wiki and forum that I can find on the subject and…
Vitaliy Isikov
  • 3,647
  • 9
  • 38
  • 46
3
votes
0 answers

How do I configure Dancer2 with mod_proxy_fastcgi

The Dancer2 Manual gives examples for mod_proxy and mod_fastcgi but in Ubuntu 18.04 the mod_fastcgi is removed. So are there any examples out there using Dancer2 with mod_proxy_fcgi? Edit: If I have to use mod_proxy instead, how do I startup my…
tejas
  • 1,795
  • 1
  • 16
  • 34
3
votes
1 answer

mod_fcgid.so module not loading with apache 2.4 after upgradation of MAC OSX yosemite

I have upgraded osx 10.8 to 10.10 yosemite. After up gradation I found that apache version also upgraded from 2.2 to 2.4. The only thing I found in apache 2.4 that the loadmodule section in apache configuration file for FastCGI giving error and…
3
votes
2 answers

How are data shared between fastCGI processes?

I've written a simple perl script that I'm running via fastCGI on Apache. The application loads a set of XML data files which are used to lookup values based upon the the query parameters of an incoming request. As I understand it, if I want to…
3
votes
1 answer

Dispatching with Catalyst in FastCGI under Apache

I am teaching myself Catalyst. I would very much like to organise my application with multiple controllers and multiple actions in each, and maybe try chains, but I am not sure how to make this work under my specific settings. I have full control of…
scozy
  • 2,511
  • 17
  • 34
3
votes
0 answers

Detecting aborted client requests with FastCGI

I'm developing a FastCGI application using Apache, mod_fastcgi and the fcgapp.h API. Everything works so far, but I'm failing to detect aborted connections. We need to control them, because we are sometimes doing expensive operations which have to…
Guillermo
  • 81
  • 5
3
votes
1 answer

Ruby on Rails. dispatch.fcgi . dependencies.rb:251:in `require': cannot load such file -- fcgi (LoadError)

app = redmine-2.0.1 ruby = ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux] [root@by1016690 public]# ./dispatch.fcgi /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.2.3/lib/active_support/dependencies.rb:251:in `block in require': iconv…
for2ne
  • 33
  • 1
  • 5
2
votes
1 answer

FastCGI Configuration errors - upload and image processing fail

My wordpress is behaving strangely, after I changed the php handler to fcgi [Sat Dec 03 02:13:06 2011] [warn] [client 66.249.72.226] (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server [Sat Dec 03 02:13:06 2011] [error]…
pixeline
  • 17,669
  • 12
  • 84
  • 109
2
votes
2 answers

Accessing environment variable in a fastcgi application

I have writen a fastcGI application using C and C++ I have a free function that returns a string, if a specific environment variable has not been set. The function looks like this: namespace { std::string getNameString() { char *…
oompahloompah
  • 9,087
  • 19
  • 62
  • 90
2
votes
1 answer

How to configure lighttpd to only allow current subnet to access?

I'm new to lighttpd. Here is the goal I want to achieve. I want only the client in my current can access my lighttpd server. For example, current ip address of lighttpd server is '192.168.10.100', only the client with ip address '192.168.10.0/24'…
Tony Lin
  • 765
  • 3
  • 15
  • 35