-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title> Yum Repo for local installtion</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Yum Repo for local installatio</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
<br />
<br />
<a href = "rpms" >Enter the RPM folder </a><br />
<br />
<br />
<p><em>Please create the file local.repo as below and then move to /etc/yum.repos.d/</em></p>
<script type="text/javascript">
var ip = location.host;
var comment = "###############################################";
document.write(comment.fontcolor("Red"));
document.write("<pm><em></em></p>");
document.write("[local]"+"<br>");
document.write("name=local"+"<br>");
document.write("baseurl=http://"+(ip)+"/rpms"+"<br>");
document.write("enabled=1"+"<br>");
document.write("gpgcheck=0"+"<br>");
document.write("<pm><em></em></p>");
document.write(comment.fontcolor("Red"));
</script>
</body>
</html>