Commit 97aa2744 authored by Leo Iannacone's avatar Leo Iannacone

added configuration files for i386 and amd64

parent a4bfa75e
/*
* debomatic-webui amd64 configuration
*/
var architecture = 'amd64'
var port = 8064
// common config
var config = {}
config.host = 'localhost'
config.port = port
config.web = {}
config.web.debomatic = {}
config.web.debomatic.admin = {}
config.web.debomatic.admin.email = "dktrkranz AT debian DOT org" // please use this SPAMFREE form - it will be converted client side by javascript
config.web.debomatic.architecture = architecture
config.debomatic = {}
config.debomatic.path = '/srv/debomatic-' + architecture
config.web.debomatic.dput = {}
config.web.debomatic.dput.incoming = config.debomatic.path
config.web.debomatic.dput.host = "debomatic-" + architecture + ".debian.net"
// DO NOT EDIT THIS LINE:
module.exports = config
/*
* debomatic-webui i386 configuration
*/
var architecture = 'i386'
var port = 8032
// common config
var config = {}
config.host = 'localhost'
config.port = port
config.web = {}
config.web.debomatic = {}
config.web.debomatic.admin = {}
config.web.debomatic.admin.email = "dktrkranz AT debian DOT org" // please use this SPAMFREE form - it will be converted client side by javascript
config.web.debomatic.architecture = architecture
config.debomatic = {}
config.debomatic.path = '/srv/debomatic-' + architecture
config.web.debomatic.dput = {}
config.web.debomatic.dput.incoming = config.debomatic.path
config.web.debomatic.dput.host = "debomatic-" + architecture + ".debian.net"
// DO NOT EDIT THIS LINE:
module.exports = config
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