webserv/htdocs/YoupiBanane/index.html
whaffman 0ed0e15e70 feat: update server configuration and enhance file handling
- Increased client_max_body_size to 1000m in default.conf and location /post_body
- Added index.html for YoupiBanane with a welcome message
- Created empty other.pouic file
- Updated FileHandler to change error response from 404 to 403 for forbidden access
- Modified log output to include blue text for status messages
- Changed signal handling variable from stop_ to signum_ in Server class
- Increased MAX_EVENTS in Server run method from 10 to 1024
2025-10-28 15:02:55 +01:00

13 lines
276 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YoupiBanane</title>
</head>
<body>
<h1>Welcome to YoupiBanane!</h1>
<p>This is the index page.</p>
</body>
</html>