12 lines
264 B
Nginx Configuration File
12 lines
264 B
Nginx Configuration File
server {
|
|
server_name ipv4.flash.moe ipv6.flash.moe;
|
|
|
|
location / {
|
|
default_type 'text/plain; charset=utf-8';
|
|
|
|
add_header Access-Control-Allow-Origin '*';
|
|
add_header Cache-Control 'no-cache';
|
|
|
|
return 200 $remote_addr;
|
|
}
|
|
}
|