Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 12 matches
- Thu Feb 08, 2024 10:47 am
- Forum: Web Server
- Topic: NGINX ect... versions
- Replies: 1
- Views: 23799
Re: NGINX ect... versions
Hey,
Check compatibility with WordPress, start by checking your PHP and MySQL versions.
For WordPress, you'll need:
PHP version 7.4 or greater
MySQL version 5.7+ or MariaDB version 10.4+.
Make sure your web server either Apache or Nginx is set up with HTTPS support. If you're using Apache, ensure ...
Check compatibility with WordPress, start by checking your PHP and MySQL versions.
For WordPress, you'll need:
PHP version 7.4 or greater
MySQL version 5.7+ or MariaDB version 10.4+.
Make sure your web server either Apache or Nginx is set up with HTTPS support. If you're using Apache, ensure ...
- Thu Feb 08, 2024 10:28 am
- Forum: Web Server
- Topic: Nginx Very Very Slow Load Images
- Replies: 2
- Views: 20869
Re: Nginx Very Very Slow Load Images
Here are few point you might consider to get this much of speed by ursing vestacp as I got my site google page speed is this.
https://snipboard.io/VguKdA.jpg
On your Nginx Configuration update gzip types includes MIME types for images and adjust the expires directive for caching. The worker ...
https://snipboard.io/VguKdA.jpg
On your Nginx Configuration update gzip types includes MIME types for images and adjust the expires directive for caching. The worker ...
- Wed Aug 09, 2023 1:06 pm
- Forum: Web Server
- Topic: Redirect 301 /index.html to / not working
- Replies: 9
- Views: 35932
Re: Redirect 301 /index.html to / not working
Instead of having multiple redirection rules, try setting a single rule for handling index.html
let me see what happen this time.
RewriteEngine On
RewriteRule ^index\.html$ / [R=301,L]
# Redirect www subdomain to non-www and HTTP to HTTPS
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC,OR]
RewriteCond ...
let me see what happen this time.
RewriteEngine On
RewriteRule ^index\.html$ / [R=301,L]
# Redirect www subdomain to non-www and HTTP to HTTPS
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC,OR]
RewriteCond ...
- Wed Jul 26, 2023 9:18 pm
- Forum: Web Server
- Topic: Redirect 301 /index.html to / not working
- Replies: 9
- Views: 35932
Re: Redirect 301 /index.html to / not working
Let's try a another method to see if it resolves the problem..
backup of your current .htaccess then try change it
Options -Multiviews
ErrorDocument 404 /index.html
RewriteEngine On
# Redirect /index.html to root /
RewriteRule ^index\.html$ / [R=301,L]
# Remove www subdomain and redirect to ...
backup of your current .htaccess then try change it
Options -Multiviews
ErrorDocument 404 /index.html
RewriteEngine On
# Redirect /index.html to root /
RewriteRule ^index\.html$ / [R=301,L]
# Remove www subdomain and redirect to ...
- Fri Jul 21, 2023 1:06 pm
- Forum: Web Server
- Topic: Redirect 301 /index.html to / not working
- Replies: 9
- Views: 35932
Re: Redirect 301 /index.html to / not working
Let's try a different approach..
Options -Multiviews
ErrorDocument 404 /index.html
RewriteEngine On
# Remove www subdomain and redirect to HTTPS
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# Redirect /index.html to root /
RewriteRule ^index\.html ...
Options -Multiviews
ErrorDocument 404 /index.html
RewriteEngine On
# Remove www subdomain and redirect to HTTPS
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# Redirect /index.html to root /
RewriteRule ^index\.html ...
- Wed Jul 19, 2023 3:47 pm
- Forum: Web Server
- Topic: How do I redirect all traffic to the https:// domain?
- Replies: 4
- Views: 37630
Re: How do I redirect all traffic to the https:// domain?
Hi,
You can configure the server block to redirect all traffic to the HTTPS version of your domains.
Here's how:
1. Go to Nginx configuration '/etc/nginx/conf.d/'.
2. Create a new configuration file for redirection.
3. Edit https-redirect.conf and paste the below code.
server {
listen 80 ...
You can configure the server block to redirect all traffic to the HTTPS version of your domains.
Here's how:
1. Go to Nginx configuration '/etc/nginx/conf.d/'.
2. Create a new configuration file for redirection.
3. Edit https-redirect.conf and paste the below code.
server {
listen 80 ...
- Wed Jul 19, 2023 3:11 pm
- Forum: Web Server
- Topic: Redirect 301 /index.html to / not working
- Replies: 9
- Views: 35932
Re: Redirect 301 /index.html to / not working
First of all, you can't use both Nginx + Apache2 web servers at the same time.
Nginx does not provide native htaccess support.
It looks like there might be a problem with how Apache is set up or how the.htaccess file is being read.
Re-setup the Apache configuration.
<Directory /path/to/your ...
Nginx does not provide native htaccess support.
It looks like there might be a problem with how Apache is set up or how the.htaccess file is being read.
Re-setup the Apache configuration.
<Directory /path/to/your ...
- Wed Jul 19, 2023 2:46 pm
- Forum: Mail Server
- Topic: I can't used php by imap_open for get all message in mail account from vesta cp
- Replies: 1
- Views: 17308
Re: I can't used php by imap_open for get all message in mail account from vesta cp
Check that the PHP IMAP extension is installed and enabled on your server.
Check it on
if yes then test if your server can connect to the mail server using telnet.
I'm hoping above steps find you to determine the way out of this.
Check it on
Code: Select all
<?php
phpinfo();
?>
Code: Select all
telnet sev.cordrr.tk 143
- Wed Jul 19, 2023 2:31 pm
- Forum: Web Server
- Topic: Update Vestacp php version to 8.0
- Replies: 8
- Views: 67477
Re: Update Vestacp php version to 8.0
You need to set PHP 8.0 as the default PHP version for Apache and PHP-FPM.
Go to the VestaCP panel > Web > Edit Web Template .
Then, in the Additional NGINX directives field,
add the following lines to set PHP 8.0...
# PHP 8.0
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/run ...
Go to the VestaCP panel > Web > Edit Web Template .
Then, in the Additional NGINX directives field,
add the following lines to set PHP 8.0...
# PHP 8.0
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/run ...
- Wed Jul 19, 2023 2:16 pm
- Forum: Web Server
- Topic: v-change-web-domain-name - did not work
- Replies: 3
- Views: 21156
Re: v-change-web-domain-name - did not work
Run the "v-list-web-domains" command again to verify that the domain "euc0s" with the name "www.euc0s.sk" is listed