// webp_server_go - config // 2020-11-27 13:05 // Benny package main type Config struct { Host string `json:"HOST"` Port string `json:"PORT"` ImgPath string `json:"IMG_PATH"` Quality float32 `json:"QUALITY,string"` AllowedTypes []string `json:"ALLOWED_TYPES"` ExhaustPath string `json:"EXHAUST_PATH"` EnableAVIF bool `json:"ENABLE_AVIF"` } var ( configPath string jobs int dumpConfig, dumpSystemd bool verboseMode, showVersion bool prefetch, proxyMode bool remoteRaw = "remote-raw" config Config version = "0.4.4" releaseUrl = "https://github.com/webp-sh/webp_server_go/releases/latest/download/" ) const ( sampleConfig = ` { "HOST": "127.0.0.1", "PORT": "3333", "QUALITY": "80", "IMG_PATH": "./pics", "EXHAUST_PATH": "./exhaust", "ALLOWED_TYPES": ["jpg","png","jpeg","bmp"], "ENABLE_AVIF": false }` sampleSystemd = ` [Unit] Description=WebP Server Go Documentation=https://github.com/webp-sh/webp_server_go After=nginx.target [Service] Type=simple StandardError=journal WorkingDirectory=/opt/webps ExecStart=/opt/webps/webp-server --config /opt/webps/config.json Restart=always RestartSec=3s [Install] WantedBy=multi-user.target` ) const ( webpMax = 16383 avifMax = 65536 )