@@ -19,7 +19,7 @@ max_rows = 1000
1919
2020[api .tls ]
2121# Enable HTTPS endpoints locally using a self-signed certificate.
22- enabled = false
22+ enabled = true
2323
2424[db ]
2525# Port to use for the local database URL.
@@ -61,7 +61,7 @@ enabled = true
6161# Port to use for Supabase Studio.
6262port = 54323
6363# External URL of the API server that frontend connects to.
64- api_url = " http ://127.0.0.1"
64+ api_url = " https ://127.0.0.1"
6565# OpenAI API Key to use for Supabase AI in the Supabase Studio.
6666openai_api_key = " env(OPENAI_API_KEY)"
6767
@@ -97,9 +97,9 @@ file_size_limit = "50MiB"
9797enabled = true
9898# The base URL of your website. Used as an allow-list for redirects and for constructing URLs used
9999# in emails.
100- site_url = " http ://127.0.0.1:3000"
100+ site_url = " https ://127.0.0.1:3000"
101101# A list of *exact* URLs that auth providers are permitted to redirect to post authentication.
102- additional_redirect_urls = [" https://localhost:3000/welcome" ," https://localhost:3000/welcome/install-to-slack" ]
102+ additional_redirect_urls = [" https://localhost:3000/welcome" , " https://localhost:3000/welcome/install-to-slack" ]
103103
104104# How long tokens are valid for, in seconds. Defaults to 3600 (1 hour), maximum 604,800 (1 week).
105105jwt_expiry = 3600
@@ -180,8 +180,8 @@ max_frequency = "5s"
180180
181181# Configure one of the supported SMS providers: `twilio`, `twilio_verify`, `messagebird`, `textlocal`, `vonage`.
182182[auth .sms .twilio ]
183- enabled = false
184183account_sid = " "
184+ enabled = false
185185message_service_sid = " "
186186# DO NOT commit your Twilio auth token to git. Use environment variable substitution instead:
187187auth_token = " env(SUPABASE_AUTH_SMS_TWILIO_AUTH_TOKEN)"
@@ -199,10 +199,10 @@ verify_enabled = false
199199# Configure MFA via Phone Messaging
200200[auth .mfa .phone ]
201201enroll_enabled = false
202- verify_enabled = false
202+ max_frequency = " 5s "
203203otp_length = 6
204204template = " Your code is {{ .Code }}"
205- max_frequency = " 5s "
205+ verify_enabled = false
206206
207207# Configure MFA via WebAuthn
208208# [auth.mfa.web_authn]
@@ -219,8 +219,8 @@ redirect_uri = "env(SLACK_REDIRECT_URI)"
219219secret = " env(SLACK_CLIENT_SECRET)"
220220
221221[auth .external .apple ]
222- enabled = false
223222client_id = " "
223+ enabled = false
224224# DO NOT commit your OAuth provider secret to git. Use environment variable substitution instead:
225225secret = " env(SUPABASE_AUTH_EXTERNAL_APPLE_SECRET)"
226226# Overrides the default auth redirectUrl.
0 commit comments