Minimal test vhost

This commit is contained in:
sebd 2005-05-09 15:10:42 +00:00
parent ee2b28615e
commit 838cd439e8
2 changed files with 22 additions and 0 deletions

10
config-simple.xml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0"?>
<configuration xmlns="http://www.entrouvert.org/namespaces/expression/0.0">
<pidFilePath>expression.pid</pidFilePath>
<virtualHost>
<documentRoot>vhosts/simple</documentRoot>
<port>1997</port>
<serverName>localhost</serverName>
<title>Simple Site</title>
</virtualHost>
</configuration>

12
vhosts/simple/index.xml Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<p>Hello, world !</p>
</body>
</html>