-
-
Save alanbacelar/a4365324c15e683a02cc6791c285a7ea to your computer and use it in GitHub Desktop.
Policy file to configure Chrome/Chromium to automatically select a client certificate (useful for Kiosk mode)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AutoSelectCertificateForUrls": ["{\"pattern\":\"*\",\"filter\":{}}"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LINUX: https://gist.github.com/njh/1d6f2c6acdf39fb3c1b0
MAC:
defaults write com.google.Chrome AutoSelectCertificateForUrls -array
defaults write com.google.Chrome AutoSelectCertificateForUrls -array-add -string '{"pattern":"[*.]","filter":{"ISSUER":{"CN":"NOME DA EMPRESA:227497234872"}}}'
WINDOWS:
Registros
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\AutoSelectCertificateForUrls]
name = 1
Value = {"pattern": "[*.]", "filter" : {}}
If you are using Google Chrome and Client SSL Cert and you are tired of constantly selecting certificates, try this:
{"pattern":"https://[*.]example.com","filter":{"ISSUER":{"CN":"example.com"}}}
If you’re on a Mac you’ll have to create/edit file /Library/Preferences/com.google.Chrome.plist and insert the following code (extend it for more server addresses):
<plist version="1.0″>
AutoSelectCertificateForUrls
{"pattern":"[*.]example.corp","filter":{"ISSUER":{"CN":"example.com"}}}
For all sites:
{"pattern":"https://","filter":{}}
{"pattern": "[.]", "filter" : {"ISSUER": {"CN":"AC SOLUTI Multipla v5"} } }