Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 18 matches
- Wed May 27, 2020 5:49 pm
- Forum: Mail Server
- Topic: forward all email to specific email account
- Replies: 3
- Views: 12355
Re: forward all email to specific email account
Catchall email is what you’re looking for. Go to your panel > mail tab > edit mail domain and type in a address as shown.


- Wed May 06, 2020 6:26 pm
- Forum: Mail Server
- Topic: Slow mail server - exim & dovecot
- Replies: 1
- Views: 3684
Re: Slow mail server - exim & dovecot
Check exim4 config and look for rfc1413_query_timeout. Set to 0s
- Fri Apr 10, 2020 12:56 pm
- Forum: DNS Server
- Topic: 3 Vesta Servers 1 DNS, 2 Webservers
- Replies: 1
- Views: 8890
Re: 3 Vesta Servers 1 DNS, 2 Webservers
What are your firewall rules on router?
- Thu Feb 27, 2020 2:44 pm
- Forum: Web Server
- Topic: Internal Server Error 500
- Replies: 2
- Views: 6700
Re: Internal Server Error 500
What does the log say?
- Sat Dec 28, 2019 2:53 pm
- Forum: General Discussion
- Topic: How to upload backup from local host to backup directories in VestaCP?
- Replies: 2
- Views: 2912
Re: How to upload backup from local host to backup directories in VestaCP?
Not sure what you're trying to achieve. Do you want to upload a backup tar from another server? Or do you have the backupfile on your local pc?
- Mon Nov 04, 2019 9:59 am
- Forum: Web Server
- Topic: Error: Let's Encrypt validation status 400
- Replies: 62
- Views: 239932
Re: Error: Let's Encrypt validation status 400
In case someone hasn't solved their issue with LE 400 status code, I managed to solve mine with this.
wget https://raw.githubusercontent.com/serghey-rodin/vesta/master/bin/v-add-letsencrypt-domain -O $VESTA/bin/v-add-letsencrypt-domain
wget https://raw.githubusercontent.com/serghey-rodin/vesta ...
wget https://raw.githubusercontent.com/serghey-rodin/vesta/master/bin/v-add-letsencrypt-domain -O $VESTA/bin/v-add-letsencrypt-domain
wget https://raw.githubusercontent.com/serghey-rodin/vesta ...
- Thu Oct 24, 2019 6:45 pm
- Forum: Mail Server
- Topic: Spamassassin sa-learn best practice?
- Replies: 1
- Views: 3128
Re: Spamassassin sa-learn best practice?
Anyone? 🤔
- Wed Oct 16, 2019 9:05 pm
- Forum: Mail Server
- Topic: Spamassassin sa-learn best practice?
- Replies: 1
- Views: 3128
Spamassassin sa-learn best practice?
I need to know if there is something wrong I do whenever i try to learn spamassassin what's spam and not.
I have created a separate spam folder where I put all spam mails and run sa-learn --spam /path/to/spam and sa-learn --ham on whats not.
I do keep receive tons of spam in my mailbox even after ...
I have created a separate spam folder where I put all spam mails and run sa-learn --spam /path/to/spam and sa-learn --ham on whats not.
I do keep receive tons of spam in my mailbox even after ...
- Tue May 07, 2019 11:06 pm
- Forum: Web Server
- Topic: http (www or non-www) to https non-www on VPS Debian 9 server for all sites
- Replies: 2
- Views: 3575
Re: http (www or non-www) to https non-www on VPS Debian 9 server for all sites
Try this one
Code: Select all
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
- Sun Sep 10, 2017 2:54 pm
- Forum: Web Server
- Topic: Reverse Proxy on the subdomain
- Replies: 7
- Views: 10215
Re: Reverse Proxy on the subdomain
If you're running nginx you can paste this in your nginx config /etc/nginx/conf/ your.ip .conf
Just make sure to edit listen ip with your own.
server {
listen 52.0.14.116:80;
server_name vip.tvhome.me;
location / {
proxy_pass http://148.251.187.58:8096
}
}
Reload nginx service and you'r up ...
Just make sure to edit listen ip with your own.
server {
listen 52.0.14.116:80;
server_name vip.tvhome.me;
location / {
proxy_pass http://148.251.187.58:8096
}
}
Reload nginx service and you'r up ...