63 lines
1.9 KiB
HTML
63 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About - Simple Flask App</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 800px;
|
|
margin: 50px auto;
|
|
padding: 20px;
|
|
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
|
color: white;
|
|
}
|
|
.container {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
h1 {
|
|
margin: 0 0 20px 0;
|
|
font-size: 2.5em;
|
|
}
|
|
a {
|
|
color: #ffd700;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.nav {
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>About This App</h1>
|
|
<p>This is a simple 2-page Flask application created to test server deployment configuration.</p>
|
|
<p><strong>Purpose:</strong> Verify that Passenger WSGI configuration works correctly.</p>
|
|
|
|
<h2>Configuration:</h2>
|
|
<ul>
|
|
<li><strong>Startup file:</strong> wsgi.py</li>
|
|
<li><strong>Entry point:</strong> app</li>
|
|
<li><strong>Framework:</strong> Flask 3.0.0</li>
|
|
<li><strong>Python:</strong> 3.13.11</li>
|
|
</ul>
|
|
|
|
<div class="nav">
|
|
<a href="/">Home</a> |
|
|
<a href="/about">About</a> |
|
|
<a href="/test">Test</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|