![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.quebec/public_html/ |
#!/bin/bash # Update .env.production with secure secrets echo "Updating .env.production with secure secrets..." # Backup original file cp .env.production .env.production.backup # Update the secrets sed -i 's/NEXTAUTH_SECRET=your-production-secret-key-here/NEXTAUTH_SECRET=RjKcq7P5dHjuoeFKl+bgWX0G\/g9q9tdVsQh+P7lwG6o=/' .env.production sed -i 's/JWT_SECRET=your-jwt-secret-key/JWT_SECRET=rmU0gtmbLtJCDkaZKsB07DeXG8oWjFb0Gxn36ximq+s=/' .env.production sed -i 's/ENCRYPTION_KEY=your-encryption-key/ENCRYPTION_KEY=dZ3NVhERrCah4gsrBrx2d+GuCDvBqFlytQabpVhMos0=/' .env.production echo "✅ Environment variables updated with secure secrets" echo "📝 Please manually update the following values:" echo " - GOOGLE_ID and GOOGLE_SECRET (if using Google OAuth)" echo " - STRIPE_PUBLISHABLE_KEY and STRIPE_SECRET_KEY (if using payments)"