Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dc-common
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bltdc
dc-common
Commits
21f94da8
Commit
21f94da8
authored
Jan 05, 2020
by
泽锋 李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增ssl证书文件夹
parent
9db6c1da
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
Dockerfile
data-nginx/Dockerfile
+1
-0
nginx.conf
data-nginx/nginx.conf
+2
-2
No files found.
data-nginx/Dockerfile
View file @
21f94da8
FROM
nginx:1.15-alpine
FROM
nginx:1.15-alpine
COPY
data-nginx/nginx.conf /etc/nginx/nginx.conf
COPY
data-nginx/nginx.conf /etc/nginx/nginx.conf
COPY
ssl/ /etc/nginx/ssl/
COPY
data-nginx/. /usr/share/nginx/html
COPY
data-nginx/. /usr/share/nginx/html
EXPOSE
80
EXPOSE
80
CMD
["nginx", "-g", "daemon off;"]
CMD
["nginx", "-g", "daemon off;"]
data-nginx/nginx.conf
View file @
21f94da8
...
@@ -258,10 +258,10 @@ http {
...
@@ -258,10 +258,10 @@ http {
}
}
}
}
# 转发facebook messenger ssl
# 转发facebook messenger ssl
server
{
server
{
listen
443
ssl
;
listen
443
ssl
;
server_name
webhook.bailuntec.com
;
server_name
webhook.bailuntec.com
;
root
/ssl/webhook/
;
root
/ssl/webhook/
;
ssl_certificate
server.crt
;
ssl_certificate
server.crt
;
ssl_certificate_key
server.key
;
ssl_certificate_key
server.key
;
ssl_protocols
TLSv1
TLSv1.1
TLSv1.2
;
ssl_protocols
TLSv1
TLSv1.1
TLSv1.2
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment