• 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.

Recent content by Jon123

  1. J

    Input Cloudflare Whitelist Scripts for Fail2ban and NGINX

    Since first using the script to add Cloudflare IPs to the ignore list, fail2ban was ignoring ALL ips. The problem is here: cat $LOCALIPSV4 $LOCALIPSV6 > cloudflare-ips.txt If the ipv4 list from Cloudflare doesn't end with a newline, you end up with something like...
  2. J

    Input Cloudflare Whitelist Scripts for Fail2ban and NGINX

    Thanks for sharing this. I made a small change so that each IP added has a description: #!/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin # The goal of this script is to download and check the current list of Cloudflare IP-addresses and prepare a script that will add them to the Plesk Fail2ban...
  3. J

    Resolved Docker Proxy Rules - Getting 404 on the URL set

    Plesk's customer service helped out on this one, I just wanted to share in case anyone came across this in the future. From Taras @ Plesk: When the proxy rule is created for the domain's root the requests for the domain's root are proxied to the application's root in the container. Thus...
  4. J

    Resolved Docker Proxy Rules - Getting 404 on the URL set

    I have this partially working using a custom nginx directive, but something is still not right and I don't know what... # Custom docker reverse proxy settings begin location /portainer/ { proxy_http_version 1.1; proxy_set_header Connection ""; proxy_pass http://0.0.0.0:39000/; }...
  5. J

    Resolved Docker Proxy Rules - Getting 404 on the URL set

    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...
Back
Top