mapcache icon indicating copy to clipboard operation
mapcache copied to clipboard

HTTPS is not correctly identified in CGI mapcache

Open szekerest opened this issue 11 years ago • 1 comments

if(getenv("HTTPS")) { ... }

should be replaced with:

char *https = getenv("HTTPS"); if(https && !strcmp(https,"on")) { ... }

szekerest avatar Aug 10 '14 19:08 szekerest

fine by me

tbonfort avatar Aug 11 '14 07:08 tbonfort