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
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2; | |
root /config/www/wordpress; | |
index index.html index.htm index.php; | |
server_name wordpress.*; | |
# enable subfolder method reverse proxy confs |
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
{ | |
uc: '12.12', | |
a: '100', | |
c: '100', | |
e: '100', | |
f: '91', | |
i: '11', | |
ios: '12.2', | |
o_a: '64', | |
o: '82', |
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
# From: https://superuser.com/a/1329702 | |
# Set Key File Variable: | |
New-Variable -Name Key -Value "$env:UserProfile\.ssh\id_ed25519" | |
# Remove Inheritance: | |
Icacls $Key /c /t /Inheritance:d | |
# Set Ownership to Owner: | |
# Key's within $env:UserProfile: | |
Icacls $Key /c /t /Grant ${env:UserName}:F |