Files
sase.tr/docker/nginx/sites/v2.sase.tr.conf
Sase Dev 87d8eea298 feat: onboarding trial flow, Google sign-in, dark mode hotspot fixes
- 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>
2026-02-15 14:53:57 +00:00

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;
}