ai/at
1
0
This commit is contained in:
2025-06-28 07:51:17 +09:00
parent bd84914e1c
commit 5f18002be7
3 changed files with 56 additions and 26 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"}';
}
}