Browse Source

修改dockerfile配置和logo

zq940222 2 months ago
parent
commit
9fdb8eab38
3 changed files with 78 additions and 0 deletions
  1. 2 0
      Dockerfile
  2. 44 0
      docker/conf/nginx/conf.d/wkcrm.conf
  3. 32 0
      docker/conf/nginx/nginx.conf

+ 2 - 0
Dockerfile

@@ -1,4 +1,6 @@
 FROM docker.m.daocloud.io/library/nginx:1.19
 
 COPY ./dist /usr/share/nginx/html
+COPY./docker/conf/nginx/nginx.conf /etc/nginx/nginx.conf
+COPY./docker/conf/nginx/conf.d/wkcrm.conf /etc/nginx/conf.d/wkcrm.conf
 CMD ["nginx","-g","daemon off;"]

+ 44 - 0
docker/conf/nginx/conf.d/wkcrm.conf

@@ -0,0 +1,44 @@
+    server {
+        listen       80;
+        server_name  localhost;
+        client_max_body_size 100M;
+        location / {
+                proxy_pass   http://wkcrm:8443/;
+        }
+        location /nacos/ {
+                add_header Access-Control-Allow-Origin *;
+                add_header Access-Control-Allow-Methods *;
+                proxy_buffering off; 
+                proxy_redirect off;
+                proxy_set_header Host $host:$server_port;
+                proxy_set_header proxy_url "api";
+                proxy_set_header X-Real-IP $remote_addr;
+                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+                proxy_set_header X-Forwarded-Proto  $scheme;
+                proxy_connect_timeout 60;
+                proxy_send_timeout 120;
+                proxy_read_timeout 120;
+                proxy_pass   http://nacos:8848/nacos/;
+	    }
+        location /xxl-job-admin/ {
+            add_header Access-Control-Allow-Origin *;
+            add_header Access-Control-Allow-Methods *;
+            proxy_buffering off; 
+            proxy_redirect off;
+            proxy_set_header Host $host:$server_port;
+            proxy_set_header proxy_url "api";
+            proxy_set_header X-Real-IP $remote_addr;
+            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+            proxy_set_header X-Forwarded-Proto  $scheme;
+            proxy_connect_timeout 60;
+            proxy_send_timeout 120;
+            proxy_read_timeout 120;
+            proxy_pass   http://xxl-job-admin:8080/xxl-job-admin/;
+        }
+        error_page   500 502 503 504  /50x.html;
+        location = /50x.html {
+            root   html;
+        }
+    }
+    
+

+ 32 - 0
docker/conf/nginx/nginx.conf

@@ -0,0 +1,32 @@
+
+user  nginx;
+worker_processes  1;
+
+error_log  /var/log/nginx/error.log warn;
+pid        /var/run/nginx.pid;
+
+
+events {
+    worker_connections  1024;
+}
+
+
+http {
+    include       /etc/nginx/mime.types;
+    default_type  application/octet-stream;
+
+    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
+                      '$status $body_bytes_sent "$http_referer" '
+                      '"$http_user_agent" "$http_x_forwarded_for"';
+
+    access_log  /var/log/nginx/access.log  main;
+
+    sendfile        on;
+    #tcp_nopush     on;
+
+    keepalive_timeout  65;
+
+    #gzip  on;
+
+    include /etc/nginx/conf.d/*.conf;
+}