ai/at
1
0
This commit is contained in:
2025-06-28 07:51:17 +09:00
parent bd84914e1c
commit d0e7f32d39
2 changed files with 52 additions and 25 deletions

9
configs/nginx/ipcc.conf Normal file
View File

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