• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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