jinnrry %!s(int64=2) %!d(string=hai) anos
pai
achega
4b23556456
Modificáronse 1 ficheiros con 12 adicións e 7 borrados
  1. 12 7
      server/http_server/http_server.go

+ 12 - 7
server/http_server/http_server.go

@@ -27,6 +27,12 @@ func HttpStart() {
 
 	if config.Instance.HttpsEnabled != 2 {
 		mux.HandleFunc("/", controllers.Interceptor)
+		httpServer = &http.Server{
+			Addr:         fmt.Sprintf(":%d", HttpPort),
+			Handler:      mux,
+			ReadTimeout:  time.Second * 60,
+			WriteTimeout: time.Second * 60,
+		}
 	} else {
 		fe, err := fs.Sub(local, "dist")
 		if err != nil {
@@ -42,13 +48,12 @@ func HttpStart() {
 		mux.HandleFunc("/api/settings/modify_password", contextIterceptor(controllers.ModifyPassword))
 		mux.HandleFunc("/attachments/", contextIterceptor(controllers.GetAttachments))
 		mux.HandleFunc("/attachments/download/", contextIterceptor(controllers.Download))
-	}
-
-	httpServer = &http.Server{
-		Addr:         fmt.Sprintf(":%d", HttpPort),
-		Handler:      session.Instance.LoadAndSave(mux),
-		ReadTimeout:  time.Second * 60,
-		WriteTimeout: time.Second * 60,
+		httpServer = &http.Server{
+			Addr:         fmt.Sprintf(":%d", HttpPort),
+			Handler:      session.Instance.LoadAndSave(mux),
+			ReadTimeout:  time.Second * 60,
+			WriteTimeout: time.Second * 60,
+		}
 	}
 
 	err := httpServer.ListenAndServe()