Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 7 matches
- Sun Sep 17, 2017 5:15 pm
- Forum: General Discussion
- Topic: How do I add Access-Control-Allow-Origin in vestacp? cors
- Replies: 11
- Views: 28324
Re: How do I add Access-Control-Allow-Origin in vestacp? cors
# sudo nano /home/user/conf/web/snginx.conf
Add: add_header Access-Control-Allow-Origin "*";
# sudo service nginx restart
worked for me, also it lack woff2 so you need to add it
server {
listen ip:443;
server_name cdn.domain.com www.cdn.domain.com;
location / {
proxy_pass https://ip:8443 ...
Add: add_header Access-Control-Allow-Origin "*";
# sudo service nginx restart
worked for me, also it lack woff2 so you need to add it
server {
listen ip:443;
server_name cdn.domain.com www.cdn.domain.com;
location / {
proxy_pass https://ip:8443 ...
- Sun Sep 17, 2017 1:55 pm
- Forum: FTP Server
- Topic: Cannot login to FTP with FileZilla, but with just ftp
- Replies: 3
- Views: 11443
Re: Cannot login to FTP with FileZilla, but with just ftp
You need to connect via Transfer mode: Active, worked for me


- Sun Sep 17, 2017 1:46 pm
- Forum: General Discussion
- Topic: VestaCP use eventually crashes my EC2 instance
- Replies: 6
- Views: 9738
Re: VestaCP use eventually crashes my EC2 instance
Try minimal installation, i'm using t2.micro too, only nginx + apache, vsftpd, exim + dovecot and mysql, firewall no needed when using aws :))
- Sun Sep 17, 2017 1:14 pm
- Forum: General Discussion
- Topic: CentOS 7 Install issue
- Replies: 32
- Views: 53789
Re: CentOS 7 Install issue
just 3 line, 100% working
Code: Select all
yum install yum-utils yum-config-manager --save --setopt=C7.3.1611-base.skip_if_unavailable=true yum-config-manager --save --setopt=C7.3.1611-updates.skip_if_unavailable=true
- Sun Sep 17, 2017 12:23 pm
- Forum: General Discussion
- Topic: [Issue] Can't install VestaCP (CentOS 7)
- Replies: 2
- Views: 6089
Re: [Issue] Can't install VestaCP (CentOS 7)
yum install yum-utils
yum-config-manager --save --setopt=C7.3.1611-base.skip_if_unavailable=true
yum-config-manager --save --setopt=C7.3.1611-updates.skip_if_unavailable=true
- Sun Sep 17, 2017 11:25 am
- Forum: General Discussion
- Topic: Proper DNS setup?
- Replies: 3
- Views: 10204
Re: Proper DNS setup?
Use same record, but your not good, try this
A record:
"domain.dk" to IP
"mail.domain.dk" to IP
"*.domain.dk" to IP
CNAME:
www.domain.dk to "domain.dk"
MX:
mail.domain.dk to domain.dk (Preference 10, TTL 43200)
A record:
"domain.dk" to IP
"mail.domain.dk" to IP
"*.domain.dk" to IP
CNAME:
www.domain.dk to "domain.dk"
MX:
mail.domain.dk to domain.dk (Preference 10, TTL 43200)
- Sun Sep 17, 2017 11:19 am
- Forum: Web Server
- Topic: How to open 443 port? SSL not working
- Replies: 14
- Views: 32601
Re: How to open 443 port? SSL not working
for those who getting this error try sudo service vesta restart, worked for me!