Reputation: 947
What's the difference between httpd.conf(/etc/httpd/conf/httpd.conf)
and ssl.conf(/etc/httpd/conf.d/ssl.conf)
files?
I'm trying to setup ssl on my site and found these files have similar tokens.
Any help would be appreciated.
Upvotes: 5
Views: 7161
Reputation: 160833
httpd.conf
could divide into separate files, for example, separate the ssl configurations to ssl.conf
.
So it will also work if you put your ssl configurations in httpd.conf
, but it is better to put in ssl.conf
.
Upvotes: 6