• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Issue Server Session/ cache issue ?

lukebrenner

New Pleskian
Hi there,
I have a website which uses user authentication. UNLESS I put the following directive in my .htaccess file in root, the user is NOT logged out.

ExpiresActive On
ExpiresDefault "access plus 1 second"


I guess this is not normal, somehow my server is not set up properly by default.

Here's the configuration:

VPS hosted at hosteurope.de
Plesk Onyx 17.0.17 with update #21 (upgraded from 12.5 but it behaved like that too in 12.5)
CentOS Linux 7.3.1611 (Core)
PHP 7.0.17 with default values ( except Short Open Tag ON )


I have the following HTTPS additional directives in my apache:

Header unset ETag
Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"
Header always set X-Frame-Options "SAMEORIGIN"
Header always set Content-Security-Policy "default-src https: data: 'unsafe-inline' 'unsafe-eval'"
Header always set X-Xss-Protection "1; mode=block"
Header always set X-Content-Type-Options "nosniff"
Header always set Referrer-Policy: origin-when-cross-origin
Header set X-WebKit-CSP: "default-src 'self'"
Header set X-Permitted-Cross-Domain-Policies: "master-only"
Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure



and the following for HTTP :

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,QSA]
</IfModule>


Web application firewall is enabled, with the default Atomic Basic Mod security rule set enabled.

Any help is appreciated.
Thank you.
 
Last edited:
I forgot to mention, PHP is running in FPM mode, please see the attached images for Apache and PHP enabled modules.
 

Attachments

  • 2017-03-31 09_54_52-Apache Web Server Settings - Plesk Onyx 17.0.17.jpg
    2017-03-31 09_54_52-Apache Web Server Settings - Plesk Onyx 17.0.17.jpg
    106.1 KB · Views: 9
  • 2017-03-31 09_56_12-Settings for 7.0.17 FPM application - Plesk Onyx 17.0.17.jpg
    2017-03-31 09_56_12-Settings for 7.0.17 FPM application - Plesk Onyx 17.0.17.jpg
    41.9 KB · Views: 8
Back
Top