forked from CareyWang/sub-web
-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: "3" | ||
|
||
services: | ||
node: | ||
build: ./node | ||
container_name: node | ||
|
||
nginx: | ||
build: ./nginx | ||
container_name: nginx | ||
ports: | ||
- "80:80" | ||
- "443:443" | ||
volumes: | ||
- ./containers/nginx/nginx.conf:/etc/nginx/nginx.conf | ||
- ./logs/nginx:/var/log/nginx | ||
- ./app:/var/www/http/sub-web | ||
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM nginx:1.16 | ||
|
||
RUN mkdir -p /var/www/http \ | ||
&& chown -R www-data:www-data /var/www/http/ /var/log/nginx/ | ||
|
||
# 设置时区 && 同步时间 | ||
ENV TZ=Asia/Shanghai | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
server { | ||
listen 80; | ||
server_name example.com; | ||
|
||
root /var/www/http/sub-web; | ||
index index.html index.htm; | ||
|
||
error_page 404 /index.html; | ||
|
||
gzip on; #开启gzip压缩 | ||
gzip_min_length 1k; #设置对数据启用压缩的最少字节数 | ||
gzip_buffers 4 16k; | ||
gzip_http_version 1.0; | ||
gzip_comp_level 6; #设置数据的压缩等级,等级为1-9,压缩比从小到大 | ||
gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; #设置需要压缩的数据格式 | ||
gzip_vary on; | ||
|
||
location ~* \.(css|js|png|jpg|jpeg|gif|gz|svg|mp4|ogg|ogv|webm|htc|xml|woff)$ { | ||
access_log off; | ||
add_header Cache-Control "public,max-age=30*24*3600"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
user www-data; | ||
worker_processes 2; | ||
pid /run/nginx.pid; | ||
daemon off; | ||
|
||
events { | ||
worker_connections 2048; | ||
multi_accept on; | ||
use epoll; | ||
} | ||
|
||
http { | ||
server_tokens off; | ||
sendfile on; | ||
tcp_nopush on; | ||
tcp_nodelay on; | ||
keepalive_timeout 15; | ||
types_hash_max_size 2048; | ||
client_max_body_size 20M; | ||
include /etc/nginx/mime.types; | ||
default_type application/octet-stream; | ||
gzip on; | ||
gzip_disable "msie6"; | ||
|
||
log_format default '$remote_addr - $remote_user [$time_local] "$request" ' | ||
'$status $body_bytes_sent "$http_referer" ' | ||
'"$http_user_agent" "$http_x_forwarded_for"'; | ||
|
||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | ||
ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS'; | ||
|
||
include /etc/nginx/conf.d/*.conf; | ||
open_file_cache off; | ||
charset UTF-8; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.git | ||
node_modules | ||
npm-debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# ---- Base Node ---- | ||
FROM node:10.18.1 AS base | ||
WORKDIR /app | ||
|
||
# ---- Dependencies ---- | ||
FROM base AS dependencies | ||
COPY package.json yarn.lock ./ | ||
RUN yarn install | ||
|
||
# ---- Copy Files/Build ---- | ||
FROM dependencies AS build | ||
WORKDIR /app | ||
COPY . /app | ||
RUN yarn build | ||
|
||
# --- Release ---- | ||
FROM node:10.18.1 AS release | ||
WORKDIR /app | ||
COPY --from=dependencies /app/package.json ./ | ||
# 安装 app 依赖 | ||
RUN yarn install | ||
COPY --from=build /app ./ | ||
|