Skip to content
Snippets Groups Projects
Select Git revision
  • 38e44dd60b2d9d1214373bba9721a7c15e50f263
  • master default
2 results

dma-clean

Blame
    • nimrod's avatar
      f30effa5
      - Notify about generating SSH config in the post-merge git hook. · f30effa5
      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.
      f30effa5
      History
      - Notify about generating SSH config in the post-merge git hook.
      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;
        }
    }