61

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?

Soviero
  • 4,306
  • 7
  • 34
  • 59

2 Answers2

81

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.

jpeg
  • 943
  • 7
  • 4
38

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

Mircea Vutcovici
  • 16,706
  • 4
  • 52
  • 80