1

Is it possible to run certain PHP scripts through mod_php when your apache server is configured to run as FastCGI? (FPM/FastCGI). This could be configured at the directory level, but I'm not sure what syntax to use in the apache configuration.

Server OS: Ubuntu-Server 11.04

Highway of Life
  • 22,803
  • 16
  • 52
  • 80
  • 1
    As far as I know, if you're looking for directory level granularity, you'll have to use mod_proxy (and friends) to accomplish this setup: ` ProxyPass http://localhost:1337/ ProxyPassReverse http://localhost:1337/ ` This example uses ports, instead of the default FPM configuration that uses PID's... so you'll have to do the rest of the research. :P – Caleb Gray Jul 24 '12 at 16:46

0 Answers0