3 changed files with 32 additions and 0 deletions
@ -0,0 +1,6 @@
|
||||
# Tag: frontend-serve |
||||
|
||||
FROM nginx |
||||
|
||||
COPY Frontend/dist /usr/share/nginx/html |
||||
COPY Docker/config/nginx.conf /etc/nginx/nginx.conf |
||||
@ -0,0 +1,14 @@
|
||||
events { |
||||
worker_connections 1024; |
||||
} |
||||
|
||||
http { |
||||
server { |
||||
listen 80; |
||||
root /usr/share/nginx/html; |
||||
|
||||
location / { |
||||
autoindex on; |
||||
} |
||||
} |
||||
} |
||||
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
||||
<title>Temporäre Seite</title> |
||||
</head> |
||||
<body> |
||||
Hallo bitte geh weg. |
||||
</body> |
||||
</html> |
||||
Loading…
Reference in new issue