├── Caddyfile ├── Caddyfile2.x ├── README.md ├── application-template-h2.yaml ├── application-template-mysql.yaml ├── application-template.yaml ├── docker-compose.yaml ├── halo-pm2.json ├── halo.service └── nginx.conf /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/Caddyfile -------------------------------------------------------------------------------- /Caddyfile2.x: -------------------------------------------------------------------------------- 1 | www.yourdomain.com 2 | 3 | encode gzip 4 | 5 | reverse_proxy 127.0.0.1:8090 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/README.md -------------------------------------------------------------------------------- /application-template-h2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/application-template-h2.yaml -------------------------------------------------------------------------------- /application-template-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/application-template-mysql.yaml -------------------------------------------------------------------------------- /application-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/application-template.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /halo-pm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/halo-pm2.json -------------------------------------------------------------------------------- /halo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/halo.service -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-common/HEAD/nginx.conf --------------------------------------------------------------------------------