[FIXED]Web Config, Wildcard is not working!
[FIXED]Web Config, Wildcard is not working!
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:

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):

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!
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:

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):

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!
Last edited by YaelDD on Thu Sep 18, 2014 11:27 pm, edited 2 times in total.
Re: How do I edit the vesta web config manually?
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):
nginx config files (nginx.conf & snginx.conf):
After editing them:
httpd config files (httpd.conf & shttpd.conf):
nginx config files (nginx.conf & snginx.conf):
How it was:
httpd config files (httpd.conf & shttpd.conf):
Code: Select all
ServerName aeolusnetwork.com
ServerAlias www.aeolusnetwork.com
Code: Select all
server_name aeolusnetwork.com www.aeolusnetwork.com
httpd config files (httpd.conf & shttpd.conf):
Code: Select all
ServerName aeolusnetwork.com
ServerAlias www.aeolusnetwork.com *.aeolusnetwork.com
Code: Select all
server_name aeolusnetwork.com www.aeolusnetwork.com *.aeolusnetwork.com;