10 lines
197 B
Plaintext
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"}';
|
|
}
|
|
}
|