Skip to content

Commit dd46490

Browse files
committed
fix
1 parent 03251ea commit dd46490

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

web/git_and_vim/题目/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ services:
44
image: hub.c.163.com/library/nginx:latest
55
volumes:
66
- ./web.conf:/etc/nginx/conf.d/web.conf:ro
7-
- ./git_and_vim/.N1u96ruhN5w9IXV8Vaz5.txt.swp:/usr/share/nginx/html/git_and_vim/.N1u96ruhN5w9IXV8Vaz5.txt.swp:ro
8-
- ./git_and_vim/index.html:/usr/share/nginx/html/git_and_vim/index.html:ro
9-
- ./git/:/usr/share/nginx/html/git_and_vim/.git/:ro
7+
- ./flag/.N1u96ruhN5w9IXV8Vaz5.txt.swp:/usr/share/nginx/html/flag/.N1u96ruhN5w9IXV8Vaz5.txt.swp:ro
8+
- ./flag/index.html:/usr/share/nginx/html/flag/index.html:ro
9+
- ./git/:/usr/share/nginx/html/flag/.git/:ro
1010
ports:
1111
- "9000:9000"
1212
restart: always
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Hello World</title>
7+
</head>
8+
<body>
9+
<p>test</p>
10+
</body>
11+
</html>

web/git_and_vim/题目/git_and_vim

Lines changed: 0 additions & 1 deletion
This file was deleted.

web/git_and_vim/题目/web.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ server {
22
listen 9000;
33

44
location / {
5-
root /usr/share/nginx/html/git_and_vim;
5+
root /usr/share/nginx/html/flag;
66
index index.html;
77
}
88
}

0 commit comments

Comments
 (0)