Spaces:
Running
Running
File size: 362 Bytes
47373e8 | 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 |