You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commands/local_server_start.go
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ import (
52
52
53
53
varlocalWebServerProdWarningMsg="The local web server is optimized for local development and MUST never be used in a production setup."
54
54
varlocalWebServerTlsKeyLogWarningMsg="Logging TLS master key is enabled. It means TLS connections between the client and this server will be INSECURE. This is NOT recommended unless you are debugging the connections."
55
+
varlocalWebServerAllowCorsLogWarningMsg="Cross-origin resource sharing (CORS) is enabled for every requests.\nYou may want to use https://github.com/nelmio/NelmioCorsBundle to have more control on HTTP headers."
55
56
56
57
varlocalServerStartCmd=&console.Command{
57
58
Category: "local",
@@ -83,6 +84,7 @@ var localServerStartCmd = &console.Command{
83
84
EnvVars: []string{"SSLKEYLOGFILE"},
84
85
},
85
86
&console.BoolFlag{Name: "no-workers", Usage: "Do not start workers"},
0 commit comments