proxy – máy chủ apache

Loading

bật modem proxy

sudo a2enmod proxy
sudo a2enmod proxy_http
ProxyRequests       Off
    ProxyPreserveHost   On
    AllowEncodedSlashes NoDecode

    <Proxy *>
      Order deny,allow
      Allow from all
    </Proxy>

    ProxyPass        / http://192.168.1.88:8080/
    ProxyPassReverse / http://192.168.1.88:8080/



    # setup the proxy to forward websocket requests properly
    # (note: this proxy automatically converts the secure websocket (wss)
    # to a normal websocket and vice versa.
    RewriteEngine On
    RewriteCond %{HTTP:UPGRADE} ^WebSocket$           [NC,OR]
    RewriteCond %{HTTP:CONNECTION} ^Upgrade$          [NC]
    RewriteRule .* ws://192.168.1.88:8080%{REQUEST_URI}  [P,QSA,L]
đánh giá sản phẩm