Search found 7 matches
- Sun Apr 25, 2021 11:46 pm
- Forum: Web Server
- Topic: Update Vestacp php version to 8.0
- Replies: 8
- Views: 65568
Re: Update Vestacp php version to 8.0
I haven't tried but maybe this helps:
https://www.trykeith.com/blog-post/how- ... on-vestacp
https://www.trykeith.com/blog-post/how- ... on-vestacp
- Sun Apr 25, 2021 11:44 pm
- Forum: Web Server
- Topic: Pthreads (multiple threads) on VestaCP, Ubuntu 18
- Replies: 0
- Views: 5217
Pthreads (multiple threads) on VestaCP, Ubuntu 18
Hey all, I would like to build a php version that has pthreads enabled. (As I read about it this needs building a new php.) I found an article that does this: https://blog.programster.org/ubuntu16-04-compile-php-7-2-with-pthreads My problem is that I change config path like this: --with-pcre-regex -...
- Wed Jan 27, 2021 7:25 pm
- Forum: Mail Server
- Topic: Block incoming mails from a list of domains
- Replies: 2
- Views: 10693
Re: Block incoming mails from a list of domains
Can we also block like this?
There are also 2 conf files:
This is edited by Vesta CP: etc/exim4/exim4.conf.template
And there is a file here called: etc/exim4/exim4.conf
Which one is in use?
Code: Select all
*@*.in
*@*.ch
*@*.ru
This is edited by Vesta CP: etc/exim4/exim4.conf.template
And there is a file here called: etc/exim4/exim4.conf
Which one is in use?
- Sat Jan 23, 2021 8:21 pm
- Forum: Mail Server
- Topic: HOW TO: RSPAMD integration
- Replies: 19
- Views: 95826
Re: HOW TO: RSPAMD integration
Ubuntu 18, Redis: apt install redis-server -y sed -i 's/supervised no/supervised systemd/' /etc/redis/redis.conf sed -i 's/# maxmemory <bytes>/maxmemory 100mb/' /etc/redis/redis.conf sed -i 's/# maxmemory-policy noeviction/maxmemory-policy volatile-ttl/' /etc/redis/redis.conf systemctl restart redis...
- Sat Jan 23, 2021 8:03 pm
- Forum: Mail Server
- Topic: HOW TO: RSPAMD integration
- Replies: 19
- Views: 95826
Re: HOW TO: RSPAMD integration
Hey, I am fighting with this as well. I found out rspamd install, on Ubuntu 18. apt-get install -y lsb-release wget # optional CODENAME=`lsb_release -c -s` wget -O- https://rspamd.com/apt-stable/gpg.key | apt-key add - echo "deb [arch=amd64] http://rspamd.com/apt-stable/ $CODENAME main" > /etc/apt/s...
- Mon Apr 06, 2020 3:13 pm
- Forum: General Discussion
- Topic: sudo: no tty present and no askpass program specified
- Replies: 9
- Views: 17398
Re: sudo: no tty present and no askpass program specified
In my case removing "sudo" from cron command helped. These commands usually run with admin /root privileges so no need for sudo. This article is useful as well: https://askubuntu.com/questions/590339/getting-spam-emails-from-my-server Contains: How to find cron user? sudo grep -R "/usr/local/vesta/b...
- Sun Feb 02, 2020 1:55 pm
- Forum: General Discussion
- Topic: How to force SSL for one domain?
- Replies: 12
- Views: 42392
Re: How to force SSL for one domain?
I believe a %{HTTPS} variable is missing on the system. If I use the following (it works on any other server): Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} ^www\. [NC] RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC] RewriteRule ^ https://%1%{REQUEST_...