Rename example domains to generic scheme
Use example.com instead of domain.de/game references to make the skeleton truly generic and not tied to any specific project.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* api.domain.de — REST API
|
||||
* api.example.com — REST API
|
||||
*/
|
||||
header('Content-Type: application/json');
|
||||
$method = $_SERVER['REQUEST_METHOD'];
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* game.domain.de — Spielkomponente
|
||||
* app.example.com — Applikation
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
@@ -8,10 +8,10 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>game.domain.de</title>
|
||||
<title>app.example.com</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Game</h1>
|
||||
<p>Spielkomponente.</p>
|
||||
<h1>App</h1>
|
||||
<p>Applikation.</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* www.domain.de — Hauptseite
|
||||
* www.example.com — Hauptseite
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
@@ -8,7 +8,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>www.domain.de</title>
|
||||
<title>www.example.com</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Willkommen</h1>
|
||||
Reference in New Issue
Block a user