Skip to content

Commit

Permalink
chore(deploy): update caddyfile
Browse files Browse the repository at this point in the history
  • Loading branch information
incubator4 committed Jan 2, 2024
1 parent b2e9726 commit b97b635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/validator/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def check_domain():
domain = request.args.get("domain")
if not domain:
return Response(status=404)
if domain.endswith(f'.{xlog_domain}') or domain == "xlog.page":
if domain.endswith(f'.{xlog_domain}') or domain == xlog_domain:
return Response(status=200)

# get TXT
Expand Down

0 comments on commit b97b635

Please sign in to comment.