Multiple "ServerName" per VHost?
In Apache2 is it possible to set multiple ServerNames in one VHost?
I want to setup a "wiki" vhost for an internal wiki.
My network has a ".lan" suffix. How do I get Apache to answer both "wiki" and "wiki.lan" on the same vhost?
Solution 1:
Use both the ServerName
and ServerAlias
directives in your virtualhost definition. You would do something like:
<VirtualHost *:80>
Servername wiki.lan
ServerAlias wiki
[...]
</Virtualhost>
See Apache Docs – ServerAlias Directive.
Solution 2:
Add the other names with ServerAlias
.
You can use any of those 2 formats or a mixture:
ServerAlias aaa.example.com bbb.example.com ccc.example.com
ServerAlias ddd.example.com
ServerAlias eee.example.com
ServerAlias fff.example.com
The directive is valid only in VirtualHost section.
See: http://httpd.apache.org/docs/current/mod/core.html#serveralias