Select Git revision
-
nimrod authored
- Added Documents/bin directory for scripts, moved renew-certs, train-wifi and dma-clean (wasn't commited before) there. - Made gen-ssh-config a script (in Documents/bin) instead of a shell alias. Call said script in the post-merge git hook (instead of sourcing bashrc which currently just exits if not running interactively which I like to keep doing). Added said scripts to pre-commit.
nimrod authored- Added Documents/bin directory for scripts, moved renew-certs, train-wifi and dma-clean (wasn't commited before) there. - Made gen-ssh-config a script (in Documents/bin) instead of a shell alias. Call said script in the post-merge git hook (instead of sourcing bashrc which currently just exits if not running interactively which I like to keep doing). Added said scripts to pre-commit.
lam.shore.co.il.conf 943 B
map $host $lam { default ldap-account-manager; }
server {
listen 80;
listen [::]:80;
server_name lam.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/www-acme-challenge.conf;
include snippets/redirect-https.conf;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name lam.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/ssl.conf;
location / {
proxy_pass http://$lam$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
proxy_hide_header X-Frame-Options;
include snippets/allow-private-ips.conf;
}
}