ai/at
1
0

fix install.zsh

This commit is contained in:
2025-06-26 20:44:05 +09:00
parent ded3110fce
commit fb87306653
5 changed files with 109 additions and 116 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"}';
}
}