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: 28031
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; location ~...
- Sun Sep 17, 2017 1:55 pm
- Forum: FTP Server
- Topic: Cannot login to FTP with FileZilla, but with just ftp
- Replies: 3
- Views: 11260
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: 9661
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: 53229
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: 6031
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: 10097
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: 32349
Re: How to open 443 port? SSL not working
for those who getting this error try sudo service vesta restart, worked for me!