change the allowed origins to accept your IP (it will be visible to everyone)
'*' = all (potential security fail)
allowed_origins: [ '*' ]
server { | |
set $monitorId <YOUR_ID>; | |
server_name status.<YOUR_DOMAIN>; | |
listen 80; | |
location / { | |
proxy_set_header Host "stats.uptimerobot.com"; | |
proxy_set_header Accept-Encoding ""; | |
proxy_pass_request_headers on; |