This file contains 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
## CHECKING HEADERS AND CERTIFICATE | |
# curl headers | |
curl -Iv https://example.com | |
# check certificate | |
openssl s_client -connect www.example.com:443 | |
## FIXING FILES PERMISSIONS | |
# Remove Mac OS X Desktop Services Store files | |
find . -name ".DS_Store" -exec rm {} \; | |
# If you accidentally chmod -R 755 on everything revert files to 644 |