mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
496 B
JavaScript
24 lines
496 B
JavaScript
// Generated by CoffeeScript 2.5.1
|
|
// # NGINX extra status codes
|
|
|
|
// The NGINX web server software expands the 4xx error class to signal issues with the client's request.
|
|
var k, ref, status, v;
|
|
|
|
status = require('.');
|
|
|
|
// Import default status codes.
|
|
for (k in status) {
|
|
v = status[k];
|
|
if (k === 'extra') {
|
|
continue;
|
|
}
|
|
module.exports[k] = v;
|
|
}
|
|
|
|
ref = status.extra.nginx;
|
|
// Merge default status codes with NGINX status codes.
|
|
for (k in ref) {
|
|
v = ref[k];
|
|
module.exports[k] = v;
|
|
}
|