Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 20:25:12 +00:00
commit 3fdff7137c
4 changed files with 58 additions and 0 deletions

3
.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
.git
Dockerfile
.dockerignore

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM webdevops/php-nginx:8.3-alpine
ENV WEB_DOCUMENT_ROOT=/app
COPY . /app
RUN echo "index index.php index.html index.htm;" > /opt/docker/etc/nginx/vhost.common.d/01-index.conf \
&& chown -R application:application /app

18
index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World - Todd Low Media</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Hello, World!</h1>
<p>Welcome to the Todd Low Media Hello World project.</p>
<div class="fun-fact">
<p>🚀 This page was created on: Saturday, February 14th, 2026</p>
</div>
</div>
</body>
</html>

32
styles.css Normal file
View File

@@ -0,0 +1,32 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #333;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 500px;
width: 100%;
}
h1 {
color: #4a4a4a;
margin-bottom: 1rem;
}
.fun-fact {
margin-top: 1rem;
font-size: 0.9rem;
color: #666;
font-style: italic;
}