Skip to content

TechnoSphereCProject/fcgi_module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fcgi_module

fcgi module for processing http requests via nginx

Simple implementation config for NGINX:

server { server_name localhost;

location / { 
	fastcgi_pass 127.0.0.1:9000; 
	#fastcgi_pass  unix:/tmp/fastcgi/mysocket; 
	#fastcgi_pass localhost:9000; 
	 
	include fastcgi_params; 
} 

}

About

fcgi module for processing http requests via nginx

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors