Skip to content

Instantly share code, notes, and snippets.

@dansonnenburg
dansonnenburg / Set-DefaultUserRegistryValue.ps1
Last active September 10, 2024 07:16
Set a registry value in the default user registry hive for all new users
# Set-DefaultUserRegistryValue.ps1
# Author: Dan Sonnenburg
Param (
[Parameter(Position = 0, Mandatory = $true, HelpMessage = "Relative Registry Path. Example: SOFTWARE\<CompanyName>\<ApplicationName>\Options")][String]$RelativePath,
[Parameter(Mandatory = $true, HelpMessage = "Registry Property Name")][Alias("PropertyName")][String]$Name,
[Parameter(Mandatory = $true, HelpMessage = "The Value of a Registry Property")][String]$Value,
[Parameter(Mandatory = $true, HelpMessage = "Registry Property Type")][ValidateSet('Binary','DWord','ExpandString','MultiString','None','QWord','String','Unknown')][String]$PropertyType
)
# Load the Default User Registry Hive to HKLM\DEFAULT
@that0n3guy
that0n3guy / gist:905c812c0f65e7ffb5ec
Last active December 20, 2023 11:13
Mautic nginx config
server {
# see: http://wiki.nginx.org/Pitfalls
# see: http://wiki.nginx.org/IfIsEvil
listen 80;
root /app;
index index.html index.htm index.php;
error_page 404 /index.php;
# Make site accessible from http://set-ip-address.xip.io
@plentz
plentz / nginx.conf
Last active March 28, 2025 17:48
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048