Protect Cookies 

If your application runs over an SSL connection, protect its cookies as well.

Cookies are protected with Secure and HttpOnly flags.

By default, all cookies used in ORO applications have the secure flag set to auto. This means cookies will have the secure flag for HTTPS requests and no such flag for HTTP requests.

Except for the CSRF cookie, all cookies have the httponly flag set to true. This means that the cookie will not be accessible by scripting languages, such as JavaScript.

More information about this configuration is available in the cookie secure configuration section of Symfony documentation.

If your application uses a proxy that redirects https requests to http, the application detects the request as an http request. As a result, the auto value for the secure parameter removes the secure flag.

In this case, either set this parameter manually for each cookie in the configuration, or reconfigure your web server to add the secure flag itself.

Reconfigure Apache Web Server 

To configure the Apache web server:

  • Enable mod_headers.so in the Apache HTTP server configuration file;

  • In the configuration of your virtual domain, add:

    Header edit Set-Cookie ^(.*)$ $1;Secure
    
  • Restart the web server.