mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 11:40:04 +00:00
Adds acme.sh as embedded script
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -19,3 +19,4 @@ test/cypress/fixtures/example.json
|
|||||||
docker-build
|
docker-build
|
||||||
data
|
data
|
||||||
dist
|
dist
|
||||||
|
backend/embed/acme.sh
|
||||||
|
6
backend/embed/acme.sh
Normal file
6
backend/embed/acme.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
echo "This is a placeholder for the official acme.sh script"
|
||||||
|
echo "that will be embedded into the binary. If you are seeing"
|
||||||
|
echo "this message then something is not quite right."
|
||||||
|
exit 1
|
@@ -13,3 +13,7 @@ var Assets embed.FS
|
|||||||
// MigrationFiles are database migrations
|
// MigrationFiles are database migrations
|
||||||
//go:embed migrations/*.sql
|
//go:embed migrations/*.sql
|
||||||
var MigrationFiles embed.FS
|
var MigrationFiles embed.FS
|
||||||
|
|
||||||
|
// AcmeSh script
|
||||||
|
//go:embed acme.sh
|
||||||
|
var AcmeSh embed.FS
|
||||||
|
Reference in New Issue
Block a user