-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefaults.go
More file actions
34 lines (29 loc) · 861 Bytes
/
defaults.go
File metadata and controls
34 lines (29 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ---------------------------------------------------------------------------
//
// defaults.go
//
// Copyright (c) 2015, Jared Chavez.
// All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
// -----------
package srvApp
const (
DefaultHttpLogBuffers = 100
DefaultPrivateHttpPort = 0
DefaultPrivateTLSPort = 0
DefaultPrivateStaticDir = ""
DefaultPrivateStaticAccessLevel = "admin"
DefaultPublicHttpPort = 0
DefaultPublicTLSPort = 0
DefaultPublicStaticDir = ""
DefaultPublicStaticAccessLevel = "admin"
DefaultTLSRedirect = true
DefaultHonorXForwardedFor = false
DefaultSmtpFromAddr = ""
DefaultSmtpSrvAddr = "smtp"
DefaultSmtpSrvPort = 25
DefaultVerboseCrashReports = false
)