Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
4356986b
Commit
4356986b
authored
Aug 19, 2015
by
Luca Falavigna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configuration for mipsel
parent
c21bb9e7
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
5 deletions
+20
-5
config/mipsel.config
config/mipsel.config
+9
-0
config/powerpc.config
config/powerpc.config
+1
-1
config/s390x.config
config/s390x.config
+1
-1
debomatic-webui/views/header.ejs
debomatic-webui/views/header.ejs
+1
-1
proxy/proxy.js
proxy/proxy.js
+8
-2
No files found.
config/mipsel.config
0 → 100644
View file @
4356986b
###
debomatic
-
webui
mipsel
configuration
###
architecture
=
"mipsel"
port
=
8005
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
config/powerpc.config
View file @
4356986b
...
...
@@ -3,7 +3,7 @@ debomatic-webui powerpc configuration
###
architecture
=
"powerpc"
port
=
800
5
port
=
800
6
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
config/s390x.config
View file @
4356986b
...
...
@@ -3,7 +3,7 @@ debomatic-webui s390x configuration
###
architecture
=
"s390x"
port
=
800
6
port
=
800
7
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
debomatic-webui/views/header.ejs
View file @
4356986b
...
...
@@ -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
'
,
'
powerpc
'
,
'
s390x
'
];
var
all_services
=
[
'
amd64
'
,
'
i386
'
,
'
arm64
'
,
'
armel
'
,
'
armhf
'
,
'
mips
'
,
'
mipsel
'
,
'
powerpc
'
,
'
s390x
'
];
for
(
var
i
=
0
;
i
<
all_services
.
length
;
i
++
)
{
var
arch
=
all_services
[
i
];
var
host
=
"
debomatic-
"
+
arch
+
'
.debian.net
'
;
...
...
proxy/proxy.js
View file @
4356986b
...
...
@@ -45,19 +45,25 @@ subdomains["debomatic-mips.debian.net"] = new httpProxy.createProxyServer({
port
:
8004
}
subdomains
[
"
debomatic-mipsel.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
port
:
8005
}
})
subdomains
[
"
debomatic-powerpc.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
port
:
800
5
port
:
800
6
}
})
subdomains
[
"
debomatic-s390x.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
port
:
800
6
port
:
800
7
}
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment