#Phpmyadmin
37 messages · Page 1 of 1 (latest)
Hi there 👋
Thank you for creating a post on our Community Forum. Please keep in mind that we don't provide official support on Discord. This is a forum for the community, by the community. Meaning that help is not guaranteed. If at any point you believe your post is resolved, feel free to use the button below to close this automatically.
Now let's wait and see if someone of our lovely community can help you out!
TIP:
Need actual official support? Reach out to our customer care. 
💤 It's been a while and it looks like nobody is around or able to help you with this...
If you require actual official support please reach out to our support team. 
What is the error?
it says this but when i do sudo apt install it says i already have it downloaded
That is normal, if you have already set up a web server, do you see it running?
when i go to my web page it should be on it give me this error
That's because your web page does not have an SSL Certificate. You can go on it anyway by clicking "Advanced" and continue to the website
it said this
Ah that's not the page you want to visit. You need your server ip and the port for the website.
The port should be 80, since it is not https
so would it be this http://myserverip
xd
when i went to it this poped up
sorry i put my ip in for vps for a second on discord so the pic was not there for a sec
You see this because you haven't setup a page.
got ya just a quick question where would i set the page up again because i did have it set to php.webforms.live
You create the page in /var/www/html
Here is a guide to setup a page
https://docs.nginx.com/nginx/admin-guide/web-server/web-server/
Alright, have a nice dinner.
It might be confusing for the first time, but it gets easier when you understand it.
got ya and when i looked in the /var/www/html what file would i need to be editing
You will be creating your website there.
-
Create a folder in
/var/wwwand put your website files. -
Create a server block in
/etc/nginx/sites-available/
Example:
server {
listen 80;
root /var/www/example.com/html;
index index.html;
server_name example.com www.example.com;
}
- Link the website to enable it with the following command:
sudo ln -s /etc/nginx/sites-available/example.com /etc/nginx/sites-enabled/
Finally restart nginx
sudo systemctl restart nginx
thanks ill try that later
Hey, did it work?
sorry i was busy i will try now
when i ran the test before i restarted nginx it showed this
i fixed that error but now i get this error
You may want to check for typos in the conf files
Hey, any updates?