10 lines
214 B
Plaintext
10 lines
214 B
Plaintext
server {
|
|
listen 8088;
|
|
server_name localhost;
|
|
charset utf-8;
|
|
location / {
|
|
add_header Content-Type 'text/html; charset=utf-8';
|
|
return 200 "平台已过试用期,请联系系统管理员";
|
|
}
|
|
}
|