From aa81a4646ad58f661255539fb7d010a099e32c15 Mon Sep 17 00:00:00 2001 From: 05412 Date: Wed, 14 Aug 2024 07:48:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=B9=E5=99=A8=E5=8C=96?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compose.yaml | 21 +++++++++ nginx.conf | 118 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 139 insertions(+) create mode 100644 compose.yaml create mode 100644 nginx.conf diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..5cd1eba --- /dev/null +++ b/compose.yaml @@ -0,0 +1,21 @@ +name: surl +services: + surl-front: + image: nginx:1.27.0-alpine + container_name: surl-front + ports: + - 127.0.0.1:80:80 + volumes: + - "./dist:/usr/share/nginx/html:ro" + - "./nginx.conf:/etc/nginx/nginx.conf" + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost"] + interval: 30s + timeout: 10s + retries: 5 + start_period: 10s + networks: + - surl-network +networks: + surl-network: + external: false \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..2233d41 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,118 @@ + +#user nobody; +worker_processes 4; + +#error_log logs/error.log; +#error_log logs/error.log notice; +#error_log logs/error.log info; + +#pid logs/nginx.pid; + + +events { + worker_connections 1024; +} + + +http { + include 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 logs/access.log main; + + sendfile on; + #tcp_nopush on; + + #keepalive_timeout 0; + keepalive_timeout 65; + + #gzip on; + + server { + listen 80 default_server; + server_name localhost _; + #autoindex on; + charset utf8; + + #charset koi8-r; + + #access_log logs/host.access.log main; + location / { + root /usr/share/nginx/html; + index index.html index.htm; + } + + + #error_page 404 /404.html; + + # redirect server error pages to the static page /50x.html + # + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root html; + } + + # proxy the PHP scripts to Apache listening on 127.0.0.1:80 + # + #location ~ \.php$ { + # proxy_pass http://127.0.0.1; + #} + + # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 + # + #location ~ \.php$ { + # root html; + # fastcgi_pass 127.0.0.1:9000; + # fastcgi_index index.php; + # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; + # include fastcgi_params; + #} + + # deny access to .htaccess files, if Apache's document root + # concurs with nginx's one + # + #location ~ /\.ht { + # deny all; + #} + } + + + # another virtual host using mix of IP-, name-, and port-based configuration + # + #server { + # listen 8000; + # listen somename:8080; + # server_name somename alias another.alias; + + # location / { + # root html; + # index index.html index.htm; + # } + #} + + + # HTTPS server + # + #server { + # listen 443 ssl; + # server_name localhost; + + # ssl_certificate cert.pem; + # ssl_certificate_key cert.key; + + # ssl_session_cache shared:SSL:1m; + # ssl_session_timeout 5m; + + # ssl_ciphers HIGH:!aNULL:!MD5; + # ssl_prefer_server_ciphers on; + + # location / { + # root html; + # index index.html index.htm; + # } + #} +}