Page 1 of 1

[FIXED]Web Config, Wildcard is not working!

Posted: Thu Sep 18, 2014 10:27 pm
by YaelDD
Original TITLE: How do I edit the vesta web config manually?

My problem is the following:

I won't post my domain for advertising prupouses, I really need help....

When I try to edit my web aliases I am noticed with an error that says that "*.aeolusnetowrk.com" is not a valid domain:
Image

I added this because I was looking for adding a "wildcard alias" but now it is not letting me edit the aliases anymore and at top it dont even is working as Wildcard, for example I created this "vital" subdomain and now it send me to the "default.domain" web instead of the "aeolusnetwork.com" one (I already added the DNS Records):
Image

Now each time that i try to edit the web domains it doesn't let me anymore, no mattering if I try to delete the "*.aeolusnetwork.com" that error appears once and once again, so what Im looking for, is to edit the web file manually, how should I do this?

Please! and Thank you!

Re: How do I edit the vesta web config manually?

Posted: Thu Sep 18, 2014 11:18 pm
by YaelDD
Nevermind, I fixed my problem, for some reason the server missmatched adding the correct sentence to the httpd.conf, shttpd.conf, nginx.conf and snginx.conf configuration files, so I just added it manually and it is working now as a Wildcard config,

How it was:
httpd config files (httpd.conf & shttpd.conf):

Code: Select all

    ServerName aeolusnetwork.com
    ServerAlias www.aeolusnetwork.com
nginx config files (nginx.conf & snginx.conf):

Code: Select all

    server_name aeolusnetwork.com www.aeolusnetwork.com
After editing them:
httpd config files (httpd.conf & shttpd.conf):

Code: Select all

    ServerName aeolusnetwork.com
    ServerAlias www.aeolusnetwork.com *.aeolusnetwork.com
nginx config files (nginx.conf & snginx.conf):

Code: Select all

    server_name aeolusnetwork.com www.aeolusnetwork.com *.aeolusnetwork.com;