user266003
user266003

Reputation:

Where do I find Apache-Passenger config file?

I'm given access to a Rails on a Linux server. According to the server response (the "Server" header), it's working on Apache+Passenger. I need to re-configure it somehow, but I can't find the path where to do it. This path /etc/httpd/conf/httpd.conf doesn't exist, even /etc/httpd doesn't. Where else could it be?

Upvotes: 0

Views: 873

Answers (2)

DGM
DGM

Reputation: 26979

Debian/Ubuntu systems, look in /etc/apache2

Upvotes: 1

Tammy Butow
Tammy Butow

Reputation: 61

You can use the following command to try and find all the conf files that exist on your server:

find / -type f -name "*.conf"

Upvotes: 1

Related Questions