1 Commits

Author SHA1 Message Date
1ba74b8480 test: add new test file 2025-04-01 08:10:40 +02:00
6 changed files with 23 additions and 18 deletions

View File

@ -1,3 +1,5 @@
FROM php:apache
FROM nginx:latest
COPY src/ /var/www/html
COPY src /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]

View File

@ -1 +1,3 @@
FROM php:apache
FROM nginx:latest
CMD ["nginx", "-g", "daemon off;"]

View File

@ -8,5 +8,5 @@ services:
ports:
- '8080:80'
volumes:
- './src:/var/www/html'
- './src:/usr/share/nginx/html'

View File

@ -1,3 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>⚠️</title>
<style>
html, body {
height: 100%;
}
@ -42,3 +49,11 @@
0% { background-position: 0 0; }
100% { background-position: -4rem 0; } /* Moves further to ensure smooth loop */
}
</style>
</head>
<body>
<main>
<h1>Our website is under construction.</h1>
</main>
</body>
</html>

View File

@ -1,14 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>⚠️</title>
<link rel="stylesheet" type="text/css" href="/assets/style.css">
</head>
<body>
<main>
<h1>Our website is under construction.</h1>
</main>
</body>
</html>

0
test Normal file
View File