gagamel vor 5 Jahren
Ursprung
Commit
636fba531e
2 geänderte Dateien mit 65 neuen und 0 gelöschten Zeilen
  1. BIN
      jar/mysql-connector-java-8.0.21.jar
  2. 65 0
      nginx/style24.conf

BIN
jar/mysql-connector-java-8.0.21.jar


+ 65 - 0
nginx/style24.conf

@@ -0,0 +1,65 @@
+    # ldapi.style24.com
+    server {
+        listen       80;
+        server_name  ldapi.style24.com;
+
+        charset utf-8;
+
+        location / {
+            proxy_redirect     off;
+            proxy_set_header   Host             $host;
+            proxy_set_header   X-Real-IP        $remote_addr;
+            proxy_set_header   X-Forwarded-For  $remote_addr;
+
+            proxy_pass   http://ldapi.style24.com:8320;
+
+            proxy_connect_timeout 300;
+            proxy_send_timeout 300;
+            proxy_read_timeout 300;
+            send_timeout 300;
+        }
+    }
+
+    # ldadmin.style24.com
+    server {
+        listen       80;
+        server_name  ldadmin.style24.com;
+
+        charset utf-8;
+
+        location / {
+            proxy_redirect     off;
+            proxy_set_header   Host             $host;
+            proxy_set_header   X-Real-IP        $remote_addr;
+            proxy_set_header   X-Forwarded-For  $remote_addr;
+
+            proxy_pass   http://ldadmin.style24.com:8321;
+
+            proxy_connect_timeout 300;
+            proxy_send_timeout 300;
+            proxy_read_timeout 300;
+            send_timeout 300;
+        }
+    }
+
+    # ldfront.style24.com
+    server {
+        listen       80;
+        server_name  ldfront.style24.com;
+
+        charset utf-8;
+
+        location / {
+            proxy_redirect     off;
+            proxy_set_header   Host             $host;
+            proxy_set_header   X-Real-IP        $remote_addr;
+            proxy_set_header   X-Forwarded-For  $remote_addr;
+
+            proxy_pass   http://ldfront.style24.com:8322;
+
+            proxy_connect_timeout 300;
+            proxy_send_timeout 300;
+            proxy_read_timeout 300;
+            send_timeout 300;
+        }
+    }