Select Git revision
-
nimrod authored
The goal is to have all of the infrastructure that goes in building and maintaining shore.co.il in a single repository. Why? Copy less code and configuration around, maybe share some more code. Hopefully ease maintenance. Maybe perform far-reaching changes in a single branch instead of spreading it out across multiple repos (not really sure about this).
nimrod authoredThe goal is to have all of the infrastructure that goes in building and maintaining shore.co.il in a single repository. Why? Copy less code and configuration around, maybe share some more code. Hopefully ease maintenance. Maybe perform far-reaching changes in a single branch instead of spreading it out across multiple repos (not really sure about this).
zpush.shore.co.il 811 B
map $host $zpush { default z-push; }
server {
listen 80;
listen [::]:80;
server_name zpush.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 zpush.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://$zpush;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
}