Winning medals wasn't the point of the Olympics. It's the participating that counts.
奧運會的意義不是贏得獎牌,而是參與其中。———— Pierre de Coubertin
有小伙伴反應我博客半年沒更新了,借此機會趕緊水一篇。另有小伙伴求助于我一個這樣的問題,說在使用http://協議外加443端口訪問時,nginx會報錯提示:“400 Bad Request The plain HTTP request was sent to HTTPS port”這個錯誤是指請求錯誤,http協議的請求被發送到了https的端口。在Nginx中,不能在一個端口同時處理http和https請求。按正常瀏覽來說也不可能會...
[2019.12.2 更新] nginx.conf里要加上對laravel的靜態文件目錄的轉發(這里假設我的靜態文件在public/static下)、修改vue的nginx配置。我們以在我本地的開發環境為例,windows7+nginx+Vue+Laravel5,假設我想使用的域名是zh30.com。想達成的效果:我們想直接訪問時使用Vue開發的單頁面應用index.html,做為我們的前臺交互,且在Vue中使用history路由模式。后臺和接口使用laravel框架進行...
1. vagrant init原版ubuntu trusty環境,可能需要先離線下載安裝box2. 編輯Vagrantfile文件,取消注釋config.vm.network項,自定義ip。編輯底部config.vm.provision項,增加幾條shell。config.vm.provision "shell", path: "sources-list.sh"config.vm.provision "shell", inline: "apt-get update"config.vm.provision "shell", inline: "wget -c http://soft.vpser.net/lnmp/lnmp1.4.tar....
記錄一下我在vagrant+puphpet環境下的yaf框架配置:server { listen *:80; server_name live.dev ; client_max_body_size 1m; root /var/www/live/public; index index.html index.htm index.php; access_log /var/log/nginx/nxv_4p4tpexsdaaa.access.log; error_log /var/log/nginx/nxv_4p4tpexsdaaa.error.log; location ~ \.php$ { fastcgi_index...
1. 在nginx官網下載最新nginx,我這里下載的是nginx-1.6.2.tar.gz。http://nginx.org/en/download.html直接使用瀏覽器下載即可,或通過終端,使用curl命令。2.進入下載目錄,解壓文件。tar -xf nginx-1.6.2.tar.gz或直接雙擊這個文件,自動解壓到當前目錄。3.進入解壓目錄,添加權限chmod a+rwx *4.執行configure./configure 時注意加入參數with-cc-opt,如下:./configure –w...