mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-16 13:56:52 +00:00
add a selection to the proxy editing page and passes that down into the templates. Removed set_proxy_header from locations and moved to server directive. these will inherit down into locations if they are not defined there.
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
const Backbone = require('backbone');
|
|
|
|
const model = Backbone.Model.extend({
|
|
idAttribute: 'id',
|
|
|
|
defaults: function () {
|
|
return {
|
|
id: undefined,
|
|
created_on: null,
|
|
modified_on: null,
|
|
domain_names: [],
|
|
forward_scheme: 'http',
|
|
forward_host: '',
|
|
forward_port: null,
|
|
access_list_id: 0,
|
|
certificate_id: 0,
|
|
ssl_forced: false,
|
|
hsts_enabled: false,
|
|
hsts_subdomains: false,
|
|
caching_enabled: false,
|
|
allow_websocket_upgrade: false,
|
|
forward_proxy_header: true,
|
|
block_exploits: false,
|
|
http2_support: false,
|
|
advanced_config: '',
|
|
enabled: true,
|
|
meta: {},
|
|
// The following are expansions:
|
|
owner: null,
|
|
access_list: null,
|
|
certificate: null
|
|
};
|
|
}
|
|
});
|
|
|
|
module.exports = {
|
|
Model: model,
|
|
Collection: Backbone.Collection.extend({
|
|
model: model
|
|
})
|
|
};
|