-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver_setup.html
More file actions
70 lines (54 loc) · 2.8 KB
/
server_setup.html
File metadata and controls
70 lines (54 loc) · 2.8 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap Font Icon CSS -->
<link rel="stylesheet" href=
"https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" />
<!-- Bootstrap and other style customizations -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="styles/general.css?v=3.2.4">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/images/favicon-16x16.png">
<!-- Navbar header -->
<script src="components/header.js" type="text/javascript" defer></script>
<title>UT4ever</title>
</head>
<body style="padding-bottom: 300px;">
<!-- Header bar (logo/title and nav bar) -->
<header-component></header-component>
<!--
Main section, how to download and install UT4
Table of contents included in this card
-->
<div class="container-xl mt-2 text-light" data-bs-theme="dark">
<div class="card mb-3 rounded-0 black-shadow">
<div class="card-header pb-1 border-bottom-0"><h6 style="color:rgb(220, 220, 220);">Headless linux server setup (on home machine)</h6></div>
<div class="card-body card-body-post-a">
<p class="card-text mb-0">Setting up a UT4 hub/server on a home PC by [A+O]neckutter1.</p>
<p class="card-text mb-3">The guide uses CentOS7 as the linux OS.</p>
<p class="card-text mb-1"><u>It covers:</u></p>
<p class="card-text mb-1">a. CentOS 7 installation along with useful server commands and settings</p>
<p class="card-text mb-1">b. Setting up the Unreal Tournament 4 hub</p>
<p class="card-text mb-1">b. Setting up the UTCC redirect service</p>
<hr>
<h6 class="mb-0"><a id="hubGuideUrl" target="_blank" class="card-body-post-subtextcolor card-body-post-subtitle-link">
HubGuide.pdf
</a></h6>
</div>
</div>
<div class="card mb-3 rounded-0 black-shadow">
<div class="card-header pb-1 border-bottom-0"><h6 style="color:rgb(220, 220, 220);">Other server setup resources</h6></div>
<div class="card-body card-body-post-a py-2">
<a href="https://zavage-software.com/projects/smileyface" target="_blank" class="card-body-post-subtitle-link"><h6>Zavage Software - UT4 - Server Controller Script and Guide</h6></a>
<hr>
<a href="https://utcc.fandom.com/wiki/UT4WindowsServerSetup" target="_blank" class="card-body-post-subtitle-link"><h6>UTCC Fandom - UT4 Windows Server Setup</h6></a>
</div>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script lang="js" src="js/global_vars.js?v=3.2.4"></script>
</body>
</html>