mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-20 04:23:16 +00:00
7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
# Print backend URL for debugging
|
|
echo "Using this URL as backendURL: ${VITE_BACKEND_URL}"
|
|
# Execute nginx as main process
|
|
exec nginx -g 'daemon off;'
|