Commit ea0ada6f authored by Luca Falavigna's avatar Luca Falavigna

arm64 support

parent 1a6e843c
......@@ -8,6 +8,7 @@ Whenever you want to leave a suggestion or file a bug report, please open a [new
Some **debomatic-webui** instances are already running over:
* http://debomatic-amd64.debian.net
* http://debomatic-i386.debian.net
* http://debomatic-arm64.debian.net
* http://debomatic-armel.debian.net
* http://debomatic-armhf.debian.net
* http://debomatic-powerpc.debian.net
......
###
debomatic-webui arm64 configuration
###
architecture = "arm64"
port = 8001
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -3,7 +3,7 @@ debomatic-webui armel configuration
###
architecture = "armel"
port = 8001
port = 8002
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -3,7 +3,7 @@ debomatic-webui armhf configuration
###
architecture = "armhf"
port = 8002
port = 8003
# 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 = 8003
port = 8004
# 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 = 8004
port = 8005
# 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', 'armel', 'armhf', 'powerpc', 's390x'];
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'powerpc', 's390x'];
for (var i = 0; i < all_services.length; i++) {
var arch = all_services[i];
var host = "debomatic-" + arch + '.debian.net';
......
......@@ -17,32 +17,39 @@ subdomains["debomatic-i386.debian.net"] = new httpProxy.createProxyServer({
}
})
subdomains["debomatic-armel.debian.net"] = new httpProxy.createProxyServer({
subdomains["debomatic-arm64.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8001
}
})
subdomains["debomatic-armhf.debian.net"] = new httpProxy.createProxyServer({
subdomains["debomatic-armel.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8002
}
})
subdomains["debomatic-armhf.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8003
}
})
subdomains["debomatic-powerpc.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8003
port: 8004
}
})
subdomains["debomatic-s390x.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8004
port: 8005
}
})
......
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