nginx

    0熱度

    1回答

    這裏是我的/usr/local/nginx/conf/nginx.conf: server { listen 8080; server_name localhost; location/{ root html; index index.html index.htm; } location /test{

    0熱度

    1回答

    我目前正在嘗試創建一個Ngnix重寫規則,如果模式匹配,它將傳回變量。 請求URL:contoso.com/web/en-us/notifications/ Nginx的重寫規則rewrite ^/web/(.*)/notifications/$ /web/?action=notifications&language=$1; 因此,與添加/在通知的末尾/,變量$ _GET [ '行動']是空的。然

    1熱度

    1回答

    加載CSS和JS相關內容 我只是安裝在VM 5.6.7 sonarqube(美分OS 7)與MySQL 5.7 我配置nginx的反向代理,當我從訪問sonarqube我webrowser我得到的網頁上沒有CSS: [hide] [hide] [hide] Home Welcome to SonarQube Dashboard Since you are abl

    0熱度

    1回答

    的nginx/1.12.2 我正在開發一個項目玩具拒絕從本地主機以外的任何地方訪問管理。它將在家中進行託管。 我沒有公共IP。所以,我會用ngrok。 這是轉發的IP這樣的服務: http://bf3bf81c.ngrok.io -> localhost:80 現在,如果從世界任何地方在瀏覽器的地址欄中,用戶輸入http://bf3bf81c.ngrok.io,http請求將被引導到我的電腦並

    0熱度

    1回答

    我是nginx新手。 我在同一臺服務器上有兩個域。 一個基於https &另一對http 即: https://main.site.com //Accessing a node server app on port 3000 而 http://secondary.site.com //Accessing a node server app on port 9000 當我嘗試訪問https:

    0熱度

    1回答

    嘿,夥計們我在nginx服務器上通過letsencrypt證書在客戶端上使用python龍捲風websocket和angular-websocket。 SSL證書的最後更新後,WebSocket的是無法創建 WebSocket連接到「WSS://myDomain.com:9999/XYZ」錯誤連接失敗:打開的WebSocket握手被取消 我的nginx的配置有 location/{ pr

    1熱度

    1回答

    我在nginx的配置文件創建的位置: location ~* ^/resize/(.*)/(\d+)/(\d+)/(.*)\.(jpeg|jpg|png|gif)$ { try_files /var/image-gallery/php/web/assert/$1/$4_$2_$3.$5 /resize.php?storage=$1&width=$2&height=$3&file=$4&e

    1熱度

    1回答

    我無法訪問我的Django的網站上製作。它返回我「ERR_CONNECTION_REFUSED」。 編輯:我的錯誤是: File "/home/chuck/sitepro/site/sitepro/wsgi.py", line 12, in <module> from django.core.wsgi import get_wsgi_application ImportError: N

    0熱度

    1回答

    我想爲靜態內容設置一個不同的limit_req區域。 location ^~ /img { limit_req zone=static burst=60 nodelay; } location ^~ /logos { limit_req zone=static burst=60 nodelay; } location ^~ /js { limit_req zo

    1熱度

    1回答

    我想要重定向類似/catalogsearch/result/?q=[keyword]的URL到/products?keyword=[keyword]。遵循規則有什麼問題? location ~ /catalogsearch/result/?q=(.*) { rewrite^/products?keyword=$1 permanent; }