Spaces:
Sleeping
Sleeping
File size: 362 Bytes
e1141df b6e9412 5aabb52 1752d14 5aabb52 b6e9412 5aabb52 | 1 2 3 4 5 6 7 8 9 | #!/bin/sh
# This script reads the Secrets you set in Hugging Face
# and replaces the placeholders in the template file before starting Xray.
sed "s|\$UUID1|$UUID1|g; s|\$UUID2|$UUID2|g; s|\$SECRET_ROUTE|$SECRET_ROUTE|g" /workspace/config.template.json > /workspace/config.json
# Hand over execution to the Xray binary
exec ./xray run -c /workspace/config.json |