Skip to content

Instantly share code, notes, and snippets.

@renekreijveld
Created February 28, 2025 10:45
Show Gist options
  • Save renekreijveld/c22498dace75e275929172ca2dd05c9e to your computer and use it in GitHub Desktop.
Save renekreijveld/c22498dace75e275929172ca2dd05c9e to your computer and use it in GitHub Desktop.
Default webste index.php NginX local development on macOS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>#website_name#.dev.test</title>
<!-- Favicon-->
<!-- Core theme CSS (includes Bootstrap)-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Responsive navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">#website_name#.dev.test</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
</div>
</nav>
<!-- Page content-->
<div class="container">
<div class="row">
<div class="col-12">
<div class="text-center mt-5">
<p class="lead">Welcome to the landing page of</p>
<h1>https://#website_name#.dev.test</h1>
<p class="lead">This website is now up-and-running.</p>
<p>Replace this file (/Users/#username#/Development/Sites/#website_name#/index.php) with your own one.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<h3>Technical website information:</h3>
<table class="table table-striped table-bordered">
<tbody>
<tr>
<th scope="col" style="width: 25%;">URL</th>
<td scope="col">https://#website_name#.dev.test</td>
</tr>
<tr>
<th scope="col">Path</th>
<td scope="col">/Users/#username#/Development/Sites/#website_name#</td>
</tr>
<tr>
<th scope="col">PHP version</th>
<td scope="col"><a href="https://localhost/info.php" target="_blank">#php_version#</a></td>
</tr>
</tbody>
</table>
<h3>Database information:</h3>
<table class="table table-striped table-bordered">
<tbody>
<tr>
<th scope="col" style="width: 25%;">Database name</th>
<td scope="col"><a href="https://localhost/adminer.php?username=root&refresh=1" target="_blank">#database_name#</a></td>
</tr>
<tr>
<th scope="col">Database username</th>
<td scope="col">root</td>
</tr>
<tr>
<th scope="col">Database password</th>
<td scope="col">root</td>
</tr>
<tr>
<th scope="col">Database hostname</th>
<td scope="col">localhost</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment