Search found 932 matches

by myVesta
Wed Dec 23, 2020 9:25 am
Forum: Backup
Topic: Backup Vesta to Backblaze B2
Replies: 9
Views: 5331

Re: Backup Vesta to Backblaze B2

https://github.com/myvesta/vesta/blob/master/src/deb/vesta/postinst#L223 # Run custom triggers if [ -x "/root/vesta-patch.sh" ]; then /root/vesta-patch.sh fi that script (if exist) will be executed after EVERY update, so you can put there 'patching script' that will apply your modification...
by myVesta
Tue Dec 22, 2020 2:10 pm
Forum: General discussion
Topic: cloudflare ssl
Replies: 9
Views: 4022

Re: cloudflare ssl

"Full"
by myVesta
Tue Dec 22, 2020 1:01 pm
Forum: General discussion
Topic: phpmyadmin Internal Server Error
Replies: 2
Views: 1485

Re: phpmyadmin Internal Server Error

Huh, possible reasons:
by myVesta
Tue Dec 22, 2020 12:56 pm
Forum: General discussion
Topic: cloudflare ssl
Replies: 9
Views: 4022

Re: cloudflare ssl

Yes, always set "Full" SSL on CloudFlare SSL page.
by myVesta
Tue Dec 22, 2020 12:25 pm
Forum: Web
Topic: How to increase the upload size on myVesta CP
Replies: 2
Views: 4865

Re: Increasing Upload Size on MyVestaCP

as al3xg0r already said, see https://forum.myvestacp.com/viewtopic.php?f=18&t=54 so, in /etc/php/7.3/fpm/pool.d/YOUR-HOST.conf file, alter: upload_max_filesize post_max_size also you can alter: request_terminate_timeout max_execution_time memory_limit and then restart php-fpm: systemctl restart ...
by myVesta
Tue Dec 22, 2020 9:00 am
Forum: Migrations
Topic: Proper way to change server IP
Replies: 4
Views: 6242

Proper way to change server IP

In your SSH, as root, run: OLDIPV4='' # enter here your old IP NEWIPV4='' # enter here your new IP grep -rl "$OLDIPV4" /etc | xargs sed -i "s#$OLDIPV4#$NEWIPV4#g" find /home/*/conf/ -type f -exec sed -i "s#$OLDIPV4#$NEWIPV4#g" {} \; mv /usr/local/vesta/data/ips/$OLDIPV4...
by myVesta
Mon Dec 21, 2020 6:43 pm
Forum: General discussion
Topic: Installing MyVestaCP under NAT - LXC
Replies: 5
Views: 2843

Re: Installing MyVestaCP under NAT - LXC

ok, fix is implemented in official repo - https://github.com/myvesta/vesta/commit ... 15ff208a2e
will be pushed in next update (new installs has a fix from this moment)
by myVesta
Mon Dec 21, 2020 6:26 pm
Forum: General discussion
Topic: Access and Browse Files on myVestaCP
Replies: 4
Views: 2541

Re: Access and Browse Files on myVestaCP

Yes, just point your FTP Client program to your server hostname, using username and password of myVesta account.
by myVesta
Mon Dec 21, 2020 5:23 pm
Forum: Update
Topic: How to properly update system with myVesta
Replies: 12
Views: 12417

How to properly update system with myVesta

Good practice is to update your server at least one time per month with new software updates and security fixes. Here is how to do that. Log in to your SSH, as root. Type: apt-get update and then: apt-get -y --with-new-pkgs upgrade and then: apt-get -y dist-upgrade During this process, you will be p...
by myVesta
Mon Dec 21, 2020 5:06 pm
Forum: General discussion
Topic: [File manager] Upload Limit
Replies: 8
Views: 4277

Re: [File manager] Upload Limit

Ominae very good described situation with GDrive support.

About optimizatons... well... default setup is already oprimized in all ways.
Maybe just one note about system update process - viewtopic.php?f=28&t=270&p=754