返回http状态码
<pre><code> location = /test {
return 403 ;
}
</code></pre>
<pre><code><br />### 返回状态码和 body
</code></pre>
<pre><code> location = /test {
default_type text/html ;
return 200 'test test test ';
</code></pre>
}
<pre><code><br />### 返回json格式
</code></pre>
<pre><code>location ^~ /json {
default_type application/json ;
return 200 '{"name":"nanjing_wuxu","result":"success"}';
}
</code></pre>
<pre><code><br />### 返回uri
</code></pre>
location ^~ /json {
default_type text/html ;
return 200 $uri;
}
近期评论