diff --git a/Compose/web-proxy/host01/conf.d/library.shore.co.il.conf b/Compose/web-proxy/host01/conf.d/library.shore.co.il.conf
new file mode 100644
index 0000000000000000000000000000000000000000..62e1dd52197e3d73baa239f154047e40e4790621
--- /dev/null
+++ b/Compose/web-proxy/host01/conf.d/library.shore.co.il.conf
@@ -0,0 +1,25 @@
+# vim: ft=nginx
+server {
+    listen      80;
+    listen      [::]:80;
+    server_name library.shore.co.il;
+
+    location / {
+        proxy_pass              http://192.168.3.12$request_uri;
+        proxy_http_version      1.1;
+        include                 snippets/proxy-headers.conf;
+    }
+}
+
+server {
+    listen      443 ssl;
+    listen      [::]:443 ssl;
+    http2       on;
+    server_name library.shore.co.il;
+
+    location / {
+        proxy_pass              https://192.168.3.12$request_uri;
+        proxy_http_version      1.1;
+        include                 snippets/proxy-headers.conf;
+    }
+}
diff --git a/Compose/web-proxy/host01/conf.d/transmission.shore.co.il.conf b/Compose/web-proxy/host01/conf.d/transmission.shore.co.il.conf
new file mode 100644
index 0000000000000000000000000000000000000000..ceb0035286f112e649b69da068228d53d94f6608
--- /dev/null
+++ b/Compose/web-proxy/host01/conf.d/transmission.shore.co.il.conf
@@ -0,0 +1,26 @@
+# vim: ft=nginx
+
+server {
+    listen      80;
+    listen      [::]:80;
+    server_name transmission.shore.co.il;
+
+    location / {
+        proxy_pass              http://192.168.3.12$request_uri;
+        proxy_http_version      1.1;
+        include                 snippets/proxy-headers.conf;
+    }
+}
+
+server {
+    listen      443 ssl;
+    listen      [::]:443 ssl;
+    http2       on;
+    server_name transmission.shore.co.il;
+
+    location / {
+        proxy_pass              https://192.168.3.12$request_uri;
+        proxy_http_version      1.1;
+        include                 snippets/proxy-headers.conf;
+    }
+}