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
ea0ada6f
Commit
ea0ada6f
authored
Oct 06, 2014
by
Luca Falavigna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm64 support
parent
1a6e843c
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
26 additions
and
9 deletions
+26
-9
README.md
README.md
+1
-0
config/arm64.config
config/arm64.config
+9
-0
config/armel.config
config/armel.config
+1
-1
config/armhf.config
config/armhf.config
+1
-1
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
+11
-4
No files found.
README.md
View file @
ea0ada6f
...
...
@@ -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
...
...
config/arm64.config
0 → 100644
View file @
ea0ada6f
###
debomatic
-
webui
arm64
configuration
###
architecture
=
"arm64"
port
=
8001
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
config/armel.config
View file @
ea0ada6f
...
...
@@ -3,7 +3,7 @@ debomatic-webui armel configuration
###
architecture
=
"armel"
port
=
800
1
port
=
800
2
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
config/armhf.config
View file @
ea0ada6f
...
...
@@ -3,7 +3,7 @@ debomatic-webui armhf configuration
###
architecture
=
"armhf"
port
=
800
2
port
=
800
3
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
config/powerpc.config
View file @
ea0ada6f
...
...
@@ -3,7 +3,7 @@ debomatic-webui powerpc configuration
###
architecture
=
"powerpc"
port
=
800
3
port
=
800
4
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
config/s390x.config
View file @
ea0ada6f
...
...
@@ -3,7 +3,7 @@ debomatic-webui s390x configuration
###
architecture
=
"s390x"
port
=
800
4
port
=
800
5
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
debomatic-webui/views/header.ejs
View file @
ea0ada6f
...
...
@@ -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
'
,
'
arm
64
'
,
'
arm
el
'
,
'
armhf
'
,
'
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 @
ea0ada6f
...
...
@@ -17,32 +17,39 @@ subdomains["debomatic-i386.debian.net"] = new httpProxy.createProxyServer({
}
})
subdomains
[
"
debomatic-arm
el
.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
subdomains
[
"
debomatic-arm
64
.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
port
:
8001
}
})
subdomains
[
"
debomatic-arm
hf
.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
subdomains
[
"
debomatic-arm
el
.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
:
800
3
port
:
800
4
}
})
subdomains
[
"
debomatic-s390x.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
port
:
800
4
port
:
800
5
}
})
...
...
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