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.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
Wow, this is insane. This is not even a bug, it as a serious functionality fail. They even stated here
Count each recipient (Including to, cc and bcc headers) as individual limit for Outgoing limits
that if using Postfix it is being counted. Not so. And this was in 2014 -- three years ago!
I...
It seems plesk does not count number of recipients but number of emails sent for its outgoing mail limiter. I have a customer sending hundreds of emails using a BCC field, and even if limit is set to 50, everything goes right through.
Is there some setting to limit the number of recipients for...
It seems plesk does not count number of recipients but number of emails sent for its outgoing mail limiter. I have a customer sending hundreds of emails using a BCC field, and even if limit is set to 50, everything goes right through.
Is there some setting to limit the number of recipients for...
Ok, I fxed it by using this in additinal nginx directives, after turning on he docker proxy rule:
location ^~ /api/v3/users/websocket {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP...
OK, if I put only the following everything except for web sockets works.
location ~ ^/.* {
proxy_pass http://192.168.0.5:33000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for...
I removed the docker proxy rules for the domain completely. As I can not add map in the additional nginx directives, I just removed the line:
proxy_set_header X-Forwarded-Proto $proxy_x_forwarded_proto;
So it reads out now as below (just to test):
location / {
gzip off...
This is supposed to work as from:
mattermost-nginx/mattermost at master · mstrpupt2/mattermost-nginx · GitHub
map $http_x_forwarded_proto $proxy_x_forwarded_proto {
default $http_x_forwarded_proto;
'' $scheme;
}
server {
listen 80;
location / {
gzip off;
client_max_body_size 50M...
I can telnet to 192.168.0.5:33000 and using
GET / HTTP/1.1
HOST: HOSTNAME
and I get the page in plain text on the console, if I use the page through 192.168.0.5:33000 I get the full functionality, eveything works. I am missing something in nginx setup, to get the websocket part of it working...
location /api/v3/ {
proxy_pass http://192.168.0.5:33000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
I tried it all, docker ip, mapped ip... it just makes no difference
I have a docker app on latest Plesk Onyx running (mattermost) and it works perfectly when opened directly through server IP and Docker mapped port (192.168.0.5:33000) Everything works great.
The problem is when I try to make it work through NGINX proxy. If select a domain and set Docker Proxy...