
How to configure Apache (sites-available vs httpd.conf)
The Apache Wiki has a handy guide to the names and locations of the configuration files. Because the config files can contain include directives, parts of the configuration can be separated out into smaller …
command for checking Apache configuration - Server Fault
Jan 7, 2020 · The Apache config test (apachectl configtest, or its equivalents) only tests the config file (and the files it recursively includes) for valid syntax. However, the original question asked for …
Unauthorized error when trying to get a ssl certificate with certbot
Jan 30, 2024 · Hint: The Certificate Authority failed to verify the temporary Apache configuration changes made by Certbot. Ensure that the listed domains point to this Apache server and that it is …
apache 2.2 - How does ServerName and ServerAlias work ... - Server Fault
Then the client/caller will tell them what name they're looking for, and it will look in the Apache configuration for how to handle that name. If the name isn't listed as a ServerName/ServerAlias in …
configuration management - Testing apache config changes - Server …
Treat your configuration as code: use a configuration management tool like Puppet to manage and deploy the apache config. A general workflow: Write (or download) a Puppet module to manage …
How to configure Apache "workers" for maximum concurrency
May 10, 2016 · Moving on to Apache however I find it more difficult to understand what I should be doing. There are 3 differnt types of "workers" and I have 3 major problems optimising these: There …
Ubuntu Apache: httpd.conf or apache2.conf? - Server Fault
Apr 2, 2010 · The Apache Software Foundation publishes many bits of software, one of which is a web server named httpd. The httpd project sources include among other things an httpd.conf sample …
How do I make Apache Web Server listen on two different ports?
I'd like an Apache Web Server I have installed at home to listen on port 80 and port 8080. I've added Listen 8080 to httpd.conf and restarted the Apache services but the server doesn't seem to be …
How do I enable apache modules from the command line in RedHat?
Side note: for apache modules like mod_php or mod_auth_mysql on other systems that use RPM, like OpenSuSE, there may be other configuration files (like /etc/sysconfig/apache2) that need to get …
How can I tell which config file Apache is using? - Server Fault
Aug 9, 2012 · Furthermore, PHP works, but the "LoadModule php5_module" line is commented out. This makes me think it's using another .conf file. How can I figure out which config is actually being …