Search found 11 matches

by gn7
Fri Feb 28, 2025 2:01 am
Forum: Bug report
Topic: CLI Scripts Are No Longer Working
Replies: 0
Views: 9004

CLI Scripts Are No Longer Working

CLI Scripts Are No Longer Working I have a server with several sites that are running perfectly fine, and have for several years. I can manage things with the MyVesta GUI, but I noticed that now, whenever I try a CLI script it fails, whereas these scripts all ran fine on sames server last year. (Deb...
by gn7
Fri Nov 29, 2024 4:17 am
Forum: General discussion
Topic: How To Redirect HTTP To HTTPS For All Domain
Replies: 6
Views: 10231

Re: How To Redirect HTTP To HTTPS For All Domain

You can just edit the config: You edit the non-ssl file: sitename.nginx.conf file, like so: (where xxx is your ip and replace [domainname] with your real domain name): listen xx.xxx.xxx.xxx:80; server_name [domainname]; #to force use of httpS: return 301 https://$server_name$request_uri; Remember to...
by gn7
Wed Mar 13, 2024 5:49 am
Forum: General discussion
Topic: public_html or public_shtml?
Replies: 1
Views: 2038

Re: public_html or public_shtml?

I have always used the regular public_html for both SSL sites and non. You can add SSL later without changing the folder. Other server systems also use just the one. I think the empty public_shtml is just for people who want a separate folder for it. I don't think it's normally used.
by gn7
Tue Feb 21, 2023 7:25 am
Forum: General discussion
Topic: Urgent ! The latest update broke ALL the websites!
Replies: 6
Views: 3096

Re: Urgent ! The latest update broke ALL the websites!

Problem SOLVED! :)
And it was my fault, NOT the update. I forgot that a month or so ago I added a quick site for some notes, which I never used. And I hadn't run the nginx -t test command. It turns out there was an error in its config., that blocked nginx. So all is well now, thanks much.
by gn7
Tue Feb 21, 2023 5:12 am
Forum: General discussion
Topic: Urgent ! The latest update broke ALL the websites!
Replies: 6
Views: 3096

Re: Urgent ! The latest update broke ALL the websites!

The logs are empty: /var/log/nginx/error.log Command: netstat -plant | grep 80 gives me: tcp 0 0 [my ip address]:25 80.94.95.205:12050 ESTABLISHED 132461/exim4 tcp 0 0 [my ip address]:25 80.94.95.205:25366 ESTABLISHED 132512/exim4 so I guess exim4 is blocking nginx?? But.. disabling exim4 and doveco...
by gn7
Tue Feb 21, 2023 12:30 am
Forum: General discussion
Topic: Urgent ! The latest update broke ALL the websites!
Replies: 6
Views: 3096

Re: Urgent ! The latest update broke ALL the websites!

Serverfault site says this problem arises when: "Some other process is already running and bound to ports 80/443, thus systemd cannot start nginx. This is almost always because the process was started manually instead of via systemd" But I had not manually started anything until just now. ...
by gn7
Tue Feb 21, 2023 12:08 am
Forum: General discussion
Topic: Urgent ! The latest update broke ALL the websites!
Replies: 6
Views: 3096

Re: Urgent ! The latest update broke ALL the websites!

I restarted my server from the VPS panel before posting here, but that didn't solve the problem. So I entered your SSH code; it turns out nginx was not running!! So as root, I tried 3 commands: # systemctl restart nginx and then: systemctl start nginx.service and: service nginx start each one gave m...
by gn7
Mon Feb 20, 2023 3:40 am
Forum: General discussion
Topic: Urgent ! The latest update broke ALL the websites!
Replies: 6
Views: 3096

Re: Urgent ! The latest update broke ALL the websites!

Also I tried creating a NEW site, and it also can't be reached by any browser. I also checked my domain registrar,... everything is pointing correctly. And all my sites on other servers work, only the MyVesta sites can't be reached. the update has broken everything
by gn7
Mon Feb 20, 2023 12:38 am
Forum: General discussion
Topic: Urgent ! The latest update broke ALL the websites!
Replies: 6
Views: 3096

Urgent ! The latest update broke ALL the websites!

[NOTE: This problem is SOLVED! See last comment below. IT was not the recent Vesta Update, but rather a nginx config that caused the issue] update appears to breakALL the websites on my server.... Even when I try and put a simple static HTML page on the website, no browser can get to it. They all sa...
by gn7
Fri Jul 15, 2022 7:43 am
Forum: General discussion
Topic: I think I found a coding error/typo:
Replies: 1
Views: 1990

I think I found a coding error/typo:

I think I found a coding error/typo:
In v-install-wordpress
On line 54:
if [ -z "$emil" ]; then email="info@$domain";
BUT I think "$emil" should be "$email" ??