This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# more infos: | |
# https://learn.microsoft.com/it-it/troubleshoot/windows-client/active-directory/w32time-not-start-on-workgroup | |
# https://learn.microsoft.com/it-it/troubleshoot/windows-server/active-directory/client-clock-reverts-to-previous-time | |
sc.exe query w32time | |
# if status is stopped delete all triggers | |
sc triggerinfo w32time delete | |
# if status is stopped reconfigure w32time startup and shutdown | |
# sc.exe qtriggerinfo w32time | |
sc.exe triggerinfo w32time start/networkon stop/networkoff | |
# restart the pc and launch "sc.exe query w32time" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package public | |
import ( | |
"fmt" | |
"mime" | |
"path" | |
"sync" | |
"github.com/gofiber/fiber/v3" | |
"github.com/gofiber/fiber/v3/middleware/static" |