I have installed httpd and php. I created a php.conf file in /etc/httpd/conf.d/ I created a symlink in
/var/www/ to one of my local websites. When I point my browser, Vivaldi, to it with
http://localhost/MySite/ I can view html files but when I try a php file I get Error 503 Service Unavailable.
I think it has something to due with my php.conf file:
LoadModule proxy_module lib64/httpd/mod_proxy.so
LoadModule proxy_fcgi_module lib64/httpd/mod_proxy_fcgi.so
<FilesMatch .php$>
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
I got that from here https://getsol.us/articles/software/httpd/en/
I am not sure how to figure this out.
Can anyone give me some direction?
Thanks,
Steve