- Replace all AdventureLog references with Voyage across ~102 files (7 case variants: AdventureLog, adventurelog, Adventurelog, ADVENTURELOG, AdventUrelog, AdventureLOG, adventure-log, adventure_log) - Rename brand, static, and documentation assets to use voyage naming - Rename install_adventurelog.sh → install_voyage.sh - Update README.md and voyage_overview.md to credit AdventureLog as the upstream project and Sean Morley as its original creator
10 lines
372 B
Bash
10 lines
372 B
Bash
#!/bin/bash
|
|
|
|
# Any setup tasks or checks can go here (if needed)
|
|
echo "Voyage CDN has started!"
|
|
echo "Refer to the documentation for information about connecting your Voyage instance to this CDN."
|
|
echo "Thanks to our data providers for making this possible! You can find them on the CDN site."
|
|
|
|
# Start Nginx in the foreground (as the main process)
|
|
nginx -g 'daemon off;'
|