Force all FMP Web to https

372 Views Asked by At

Freshly installed FMP 14 Server, with valid SSL cert.

I'd like to know how force or redirect all web traffic to use https permanently on my server.

Thanks in advance!

Dan

1

There are 1 best solutions below

0
On

I think I've figured this out.

Add the following to /Library/FileMaker Server/HTTPServer/conf/httpd.conf

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*) https://%{HTTP_HOST}/$1

Restart server