
Hello list, I'm having a problem with the OTRS, when I select from the https Framework -> Core, the option HTTPS nothing happens by logging continues only with http, someone knows how I fix this? Since already thank you very much pd : Sorry for my English, it is not the best -- ----------------------------------------------------------- ----------------------------------------------------------- Matias

Matias N. Sliafertas wrote:
Hello list, I'm having a problem with the OTRS, when I select from the https Framework -> Core, the option HTTPS nothing happens by logging continues only with http, someone knows how I fix this?
Setting the SysConfig value only changes the URL's OTRS generates in
emails etc. to point to HTTPS rather than HTTP.
If you want to force users to use HTTPS you will need to reconfigure the
web server itself: either disable listening on port 80 so that HTTP
cannot be requested, or if it is Apache2 you are running on use
mod_rewrite to redirect users to HTTPS.
Adding something like:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
into the
participants (2)
-
Matias N. Sliafertas
-
Steven Carr