Commit 4356986b authored by Luca Falavigna's avatar Luca Falavigna

Configuration for mipsel

parent c21bb9e7
###
debomatic-webui mipsel configuration
###
architecture = "mipsel"
port = 8005
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
...@@ -3,7 +3,7 @@ debomatic-webui powerpc configuration ...@@ -3,7 +3,7 @@ debomatic-webui powerpc configuration
### ###
architecture = "powerpc" architecture = "powerpc"
port = 8005 port = 8006
# DO NOT EDIT THIS LINE: # DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port) config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
...@@ -3,7 +3,7 @@ debomatic-webui s390x configuration ...@@ -3,7 +3,7 @@ debomatic-webui s390x configuration
### ###
architecture = "s390x" architecture = "s390x"
port = 8006 port = 8007
# DO NOT EDIT THIS LINE: # DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port) config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
...@@ -24,7 +24,7 @@ ...@@ -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> <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"> <ul class="dropdown-menu" role="menu">
<script> <script>
var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'mips', 'powerpc', 's390x']; var all_services = ['amd64', 'i386', 'arm64', 'armel', 'armhf', 'mips', 'mipsel', 'powerpc', 's390x'];
for (var i = 0; i < all_services.length; i++) { for (var i = 0; i < all_services.length; i++) {
var arch = all_services[i]; var arch = all_services[i];
var host = "debomatic-" + arch + '.debian.net'; var host = "debomatic-" + arch + '.debian.net';
......
...@@ -45,19 +45,25 @@ subdomains["debomatic-mips.debian.net"] = new httpProxy.createProxyServer({ ...@@ -45,19 +45,25 @@ subdomains["debomatic-mips.debian.net"] = new httpProxy.createProxyServer({
port: 8004 port: 8004
} }
subdomains["debomatic-mipsel.debian.net"] = new httpProxy.createProxyServer({
target: {
host: 'localhost',
port: 8005
}
}) })
subdomains["debomatic-powerpc.debian.net"] = new httpProxy.createProxyServer({ subdomains["debomatic-powerpc.debian.net"] = new httpProxy.createProxyServer({
target: { target: {
host: 'localhost', host: 'localhost',
port: 8005 port: 8006
} }
}) })
subdomains["debomatic-s390x.debian.net"] = new httpProxy.createProxyServer({ subdomains["debomatic-s390x.debian.net"] = new httpProxy.createProxyServer({
target: { target: {
host: 'localhost', host: 'localhost',
port: 8006 port: 8007
} }
}) })
......
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