ai/at
1
0
Files
at/configs/nginx/ipcc.conf
2025-06-28 21:04:53 +09:00

10 lines
197 B
Plaintext

server {
listen 80;
location / {
add_header Content-Type application/json;
add_header Access-Control-Allow-Origin *;
return 200 '{"countryCode":"JP"}';
}
}