Skip to content
Snippets Groups Projects
Commit 74498e1a authored by nimrod's avatar nimrod
Browse files

fixup! Add ads.txt to all domains.

parent 4697c55b
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ server {
server_name autoconfig.shore.co.il;
root /var/www/autoconfig.shore.co.il/;
include snippets/www-acme-challenge.conf;
include snippets/ads-txt.conf;
include snippets/robots-allow-all.conf;
}
......@@ -13,5 +14,6 @@ server {
server_name autoconfig.shore.co.il;
root /var/www/autoconfig.shore.co.il/;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
include snippets/ssl.conf;
}
......@@ -5,6 +5,7 @@ server {
listen [::]:80;
server_name git.shore.co.il;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
include snippets/www-acme-challenge.conf;
include snippets/redirect-https.conf;
}
......@@ -14,6 +15,7 @@ server {
listen [::]:443 ssl;
server_name git.shore.co.il;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
include snippets/ssl.conf;
location / {
......
......@@ -5,5 +5,4 @@ tcp_nopush on;
tcp_nodelay on;
server_tokens off;
include snippets/common-headers.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
......@@ -4,6 +4,7 @@ server {
server_name imap.shore.co.il smtp.shore.co.il mta-sts.shore.co.il;
root /var/www/mail.shore.co.il/;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
}
server {
......@@ -12,6 +13,7 @@ server {
server_name mta-sts.shore.co.il;
root /var/www/mail.shore.co.il/;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
# Copied from snippetes/ssl.conf.
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
......
......@@ -5,6 +5,7 @@ server {
listen [::]:80;
server_name nextcloud.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/www-acme-challenge.conf;
include snippets/redirect-https.conf;
}
......@@ -14,6 +15,7 @@ server {
listen [::]:443 ssl;
server_name nextcloud.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/ssl.conf;
include snippets/nextcloud-well-known.conf;
......
......@@ -5,6 +5,7 @@ server {
listen [::]:80;
server_name shore.co.il;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
location = / { return 301 https://$host/blog/; }
location /repo/ {
root /var/www/www.shore.co.il/;
......@@ -18,6 +19,7 @@ server {
listen [::]:443 ssl;
server_name shore.co.il;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
include snippets/ssl.conf;
include snippets/nextcloud-well-known.conf;
include snippets/z-push.conf;
......
......@@ -7,6 +7,7 @@ server {
listen [::]:80 default_server;
server_name www.shore.co.il;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
location = / { return 301 https://$host/blog/; }
location /repo/ {
root /var/www/www.shore.co.il/;
......@@ -20,6 +21,7 @@ server {
listen [::]:443 ssl default_server;
server_name www.shore.co.il;
include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf;
include snippets/ssl.conf;
root /var/www/www.shore.co.il/;
error_page 404 /;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment