• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Adding wildcard virtual host?

T

Thomas K

Guest
Hello, I'm currently trying to add a wildcard sub domain to an existing domain on my server. I can't get it to work either by editing the httpd.conf or the vhosts.conf (placed in the domain.com/conf folder)

Which file do I have to edit to get that to work?

The vhost I'm adding:
<VirtualHost *:80>
ServerName *.domain.com
DocumentRoot /var/www/vhosts/domain.com/httpdocs/testapp/public
</VirtualHost>

All I get is the "Default Parallels Plesk Panel Page"
 
Last edited by a moderator:
Thanks!
Used this because I have an applications which gives my users their own subdomain.

ServerName app.timely.no
ServerAlias *.timely.no
DocumentRoot /var/www/vhosts/timely.no/httpdocs/testapp/public
 
Back
Top