Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
Hey everyone,
I need some help with the following setup:
a docker container running my API
a website which is public
a 2nd website which is protected with password (via Protected Directories)
On the public website I set up following additional rule for nginx:
location /api/ {...
Hello Plesk Community,
I'm currently facing a challenge in setting up a reverse proxy on my VPS, where I have Plesk installed. I'm running a Joplin Server instance and wish to access it through a dedicated subdomain. Ideally, the Joplin Server should be accessible via...
Hi,
I'm wondering if I could manage this with Plesk panel or Via SSH terminal console this project and if you have any advice for me :
I'm going to regroup 6 different website hosts on the same server under the same TLD.
Each website will be distinguished by a sub-directory of the TLD
like ...
In general Nginx configuration I use this configuration for Nginx reverse proxy to Odoo:
upstream odoo12a {
server 127.0.0.1:8012;
}
upstream odoo12a-im {
server 127.0.0.1:8072;
}
server {
listen 80;
server_name www.domain.com;
rewrite ^(.*) https://$host$1 permanent;
}...
Hi,
I'm trying to make openhab cloud (GitHub - openhab/openhab-cloud: Cloud companion for openHAB instances) work on Plesk but it seems impossible for me.
To explain briefly how it should work:
- Local openhab instance connects with UUID and secret to openhab cloud instancen. They are connected...
Need
help
i want anyone open this url like
https://ex.example.com
to open app
with out show any port for client
so if hey now a port
example
http://ex.example.com:8080
they sent it him to
https://ex.example.com
how can i do this please
I have set up a web server in docker but I can't figure out how to get SSL to work. Without SSL it works fine but when accessing with https:// it throws the Plesk default page. Seems that the proxy rule is not configured right. SSL-certificate is handled by certbot inside the same docker...
Hello,
Yesterday i renewed a certificate for a domain and suddenly all the websites on the server went down.
After a bit i got apache to run but not the reverse proxy server nginx.
I get this error:
Unable to start service: Unable to manage service by nginxmng: ('start', 'nginx'). Error...
I can't really figure out how to set up a reverse proxy that does the ssl stuff for my docker container; or something similar with the same effect.
I have a domain, secured with an ssl certificate and tried to add a 'docker proxy rule', set the ports but it's the same as before. I'm really...
Hey guys,
i run into an issue with the nginx reverse proxy.
When i activate the proxy it tells me there are issues with the ip configuration.
There was an ip address with ipv6 and an interface from a docker container.
I removed the Interface, and deleted the ipv6 address on the server (Linux...
Hello !
I am having a problem with my plesk obsidian and nginx fpm application served by nginx.
I want to use nginx as a webserver not with proxy. But the problem that i am having is that if I disable nginx proxy, in the php configuration the fpm application served by nginx it is serving me an...
Hi,
We have a 20 Core with 187Gb ram and 1TB SSD disk server on which we have setup Ubuntu 18 with plesk Obsidian. We are trying to achieve maximum through put. We are testing server by sending real requests using "loader.io", Website is configured to use php 7.2 fpm with nginx...
Hi everyone,
I use NGINX reverse proxy configuration to expose a Node.js api server.
I also use the default Let's Encript service offered by Plesk to secure the domain.
Every time Plesk renew the certificate, my reverse proxy configuration located in...
I have a Docker container set up and running (Portainer).
I set the port mapping to manual, 9000 to 39000.
The service is available and running at domain.com:39000
I went to:
Domain> Docker Proxy Rules
I added a rule using these settings:
URL: domain.com/portainer
Container: portainer
Port...
Hi,
I have a dev that needs to move his website build from a Debian 8 machine to a CentOS machine. In doing this the reverse proxy for their js app has stopped functioning.
The CentOS machine is running v6.10 Final with the latest Plesk 17.8.11 Apache 2.2
8GB memory and lots of disk space...
I have noticed that none of the docker's containers that I am using from Plesk are able to renew/install the certificate, and this is basically because the url /.well-known/acme-challenge... is 404
I did some research, and I have found that one workaround could be to configure Nginx to serve...
Hello,
my Plesk Onyx is installed in a docker container.
When I create a new subdomain and configure as a forward to another docker container (internal IP address) it tries to redirect me directly to the address.
The behaviour of the browser is like when I redirect to another site via
<meta...
I am trying to create a reverse proxy for nginx, however I can not get it to work. Here is my config that works on ubuntu 16.04 with NGINX only
upstream odooweb {
server 0.0.0.0:8069 weight=1 fail_timeout=300s;
}
upstream odooweb-im {
server 0.0.0.0:8072 weight=1...
I have a new virtual server running Ubuntu 16.04 and Plesk Onyx running "PHP 7.0.13 by OS Vendor" as "FPM application served by Apache" (which I think means that nginx is configured as a reverse proxy to Apache meaning that php files are served by apache but static files are served by nginx, but...