Commit 699b5e8a authored by Luca Falavigna's avatar Luca Falavigna

Configuration for mips64el

parent 3673f9b3
......@@ -3,7 +3,7 @@ debomatic-webui mips configuration
###
architecture = "mips"
port = 8004
port = 8005
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
###
debomatic-webui mips64el configuration
###
architecture = "mips64el"
port = 8004
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -3,7 +3,7 @@ debomatic-webui mipsel configuration
###
architecture = "mipsel"
port = 8005
port = 8006
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -3,7 +3,7 @@ debomatic-webui powerpc configuration
###
architecture = "powerpc"
port = 8006
port = 8007
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -3,7 +3,7 @@ debomatic-webui s390x configuration
###
architecture = "s390x"
port = 8007
port = 8008
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -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', 'mips', 'mipsel', 'powerpc', 's390x'];
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'mips64el', 'mips', 'mipsel', 'powerpc', 's390x'];
for (var i = 0; i < all_services.length; i++) {
var arch = all_services[i];
var host = "debomatic-" + arch + '.debian.net';
......
......@@ -38,34 +38,41 @@ subdomains["debomatic-armhf.debian.net"] = new httpProxy.createProxyServer({
}
})
subdomains["debomatic-mips.debian.net"] = new httpProxy.createProxyServer({
subdomains["debomatic-mips64el.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8004
}
})
subdomains["debomatic-mipsel.debian.net"] = new httpProxy.createProxyServer({
subdomains["debomatic-mips.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8005
}
})
subdomains["debomatic-powerpc.debian.net"] = new httpProxy.createProxyServer({
subdomains["debomatic-mipsel.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8006
}
})
subdomains["debomatic-s390x.debian.net"] = new httpProxy.createProxyServer({
subdomains["debomatic-powerpc.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8007
}
})
subdomains["debomatic-s390x.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8008
}
})
subdomains["debomatic-staging.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