Advertisement
kabouter123

Untitled

Dec 29th, 2013
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # This is the Apache server configuration file for providing FastCGI support
  2. # through mod_fcgid
  3. #
  4. # Documentation is available at http://fastcgi.coremail.cn/doc.htm
  5.  
  6. LoadModule fcgid_module modules/mod_fcgid.so
  7.  
  8. # Use FastCGI to process .fcg .fcgi & .fpl scripts
  9. # Don't do this if mod_fastcgi is present, as it will try to do the same thing
  10. <IfModule !mod_fastcgi.c>
  11. AddHandler fcgid-script fcg fcgi fpl
  12.  
  13. </IfModule>
  14.  
  15. # Sane place to put sockets and shared memory file
  16. SocketPath /var/run/mod_fcgid
  17. SharememPath /var/run/mod_fcgid/fcgid_shm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement