Search found 6 matches
- Sun Feb 04, 2018 12:43 pm
- Forum: Web Server
- Topic: Letsencrypt moved domain problem
- Replies: 1
- Views: 1920
Letsencrypt moved domain problem
Hi first thanks for such an excellent project VestaCP is simply fantastic in so many ways. Having the possibility of letecrypt support is fabulous! I'm having issue getting letencrypt SSL working on a domain I have moved from another VestaCP. When trying to save the web configuration with SSL suppor...
- Sun Feb 22, 2015 11:42 am
- Forum: Debian/Ubuntu
- Topic: Firewall locks all traffic
- Replies: 3
- Views: 5987
Re: Firewall locks all traffic
So this post http://www.lowendguide.com/3/networking/iptables-and-vestacp-output-rules-to-allow-dns-lookups/ got our server talking DNS again Essentially create the file $VESTA/data/firewall/custom.sh with this neat script to pull the DNS servers from resolve.conf and add them to the firewall's rule...
- Sun Feb 22, 2015 11:11 am
- Forum: Debian/Ubuntu
- Topic: Firewall locks all traffic
- Replies: 3
- Views: 5987
Re: Firewall locks all traffic
I think I worked i out. I stupidly tried to use comma separated port numbers instead of one at a time I've guessed that 0.0.0.0/0 in the address field is a permissive as it gets but I'm not sure if this is the originating address or the address of our server. Now the big issue is getting DNS queries...
- Sun Feb 22, 2015 7:49 am
- Forum: Web Server
- Topic: Remove www for urls
- Replies: 2
- Views: 3680
Re: Remove www for urls
Thanks, that's perfect.
If anyone else needs to do this in .htaccess in the web root directory:
If anyone else needs to do this in .htaccess in the web root directory:
Code: Select all
RewriteEngine on
# remove 'www.' from URLs
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]
- Sat Feb 21, 2015 9:33 am
- Forum: Web Server
- Topic: Remove www for urls
- Replies: 2
- Views: 3680
Remove www for urls
What is the correct way in vestcp to redirect requests for www.example.com to example.com?
- Thu Feb 19, 2015 12:48 pm
- Forum: Debian/Ubuntu
- Topic: Firewall locks all traffic
- Replies: 3
- Views: 5987
Firewall locks all traffic
I've been trying out Vesta and it is pretty great. I've got an issue where if I start the firewall or create a rule all network traffic seems to be stopped. (web/ssh/vesta) Using my host's VPS console I can stop the firewall with v-stop-firewall and traffic resumes acting normally. I tried to explic...