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.
hi, as per the title when I perform a command line backup on my ftp storage (I made a script to perform backups every hour) plesk does not connect the incremental backups to the main backup
as you see initial backup ("Backup iniziale") is marked 0B
obviously I'm following the logic of filenames...
Hi everyone, as the title suggests, I have this great doubt .. but if a WordPress or prestashop site is hacked, etc., is the attack limited to the specific plesk account or can I suffer damage to my entire system? a thousand thanks
i solved it by adding this nginx rule
location / {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:8000;
}
Hi, as the title suggests I would need to serve my flask app with nginx by disabling proxy mode
before managing my sites with plesk I used this configuration to serve my app
server {
listen 80;
server_name mywebsite.net;
location /static {
alias...