Commit b8335232 authored by Luca Falavigna's avatar Luca Falavigna

Add support for loong64 architecture

parent 6e2caa8e
......@@ -11,6 +11,7 @@ Some **debomatic-webui** instances are already running over:
* http://debomatic-arm64.debian.net
* http://debomatic-armel.debian.net
* http://debomatic-armhf.debian.net
* http://debomatic-loong64.debian.net
* http://debomatic-mips64el.debian.net
* http://debomatic-ppc64el.debian.net
* http://debomatic-riscv64.debian.net
......
......@@ -24,7 +24,7 @@
<a style="color: #eee; font-size: 15px; padding: 15px 10px;" href="#" class="dropdown-toggle" data-toggle="dropdown"><%= web.debomatic.architecture %> <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<script>
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'mips64el', 'ppc64el', 'riscv64', 's390x', 'staging'];
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'loong64', 'mips64el', 'ppc64el', 'riscv64', 's390x', 'staging'];
for (var i = 0; i < all_services.length; i++) {
var arch = all_services[i];
var host = "debomatic-" + arch + '.debian.net';
......
......@@ -38,6 +38,13 @@ subdomains["debomatic-armhf.debian.net"] = new httpProxy.createProxyServer({
}
})
subdomains["debomatic-loong64.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8006
}
})
subdomains["debomatic-mips64el.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment