- Move trial creation from auth hook to dedicated /subscriptions/trial endpoint with eligibility checks (3-day Full Paket trial) - Add animated onboarding progress (Remotion) with confetti on completion - Register redirects to subscription page with welcome flow - Add Google social login/signup support with config injection - Improve hotspot overlay visibility in dark mode - Show "Panele Git" on landing page when authenticated - Turkish translations for API error messages - Add toast utility wrapper, UUID generation for auth IDs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
444 B
Plaintext
16 lines
444 B
Plaintext
server {
|
|
server_name v2.sase.tr;
|
|
return 301 https://sase.tr$request_uri;
|
|
|
|
listen 443 ssl;
|
|
ssl_certificate /etc/letsencrypt/live/v2.sase.tr/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/v2.sase.tr/privkey.pem;
|
|
include /etc/letsencrypt/options-ssl-nginx.conf;
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name v2.sase.tr;
|
|
return 301 https://sase.tr$request_uri;
|
|
}
|