Tengine备忘录

  1. 反向代理配置

    server {
        listen       80 default_server;
        location / {
           proxy_pass      $scheme://$http_host$request_uri;
           #add_header Content-Type text/plain;
           #return 200 $http_host;
           proxy_buffers   256 4k;
        }
    }

猜你喜欢

转载自blog.csdn.net/liaynling/article/details/54411002