1.安裝nginx
aptitude install nginx
2.配置nginx
1.查看nginx狀態,啟動,重載等命令
service nginx status service nginx start service nginx reload
2.添加虛擬機器主機在/etc/nginx/conf.d中建立相關的檔案夾,將設定檔放到該檔案夾下。設定檔例:vhosts_sample.conf
server { listen8080; #連接埠 root /usr/share/nginx/wlj; #網頁檔案存放路徑indexindex.html index.htm; # Make site accessible from http://localhost/ server_name wljcloud.com; #網域名稱 location / { # First attempt to serve request as file, then# as directory, then fall back to displaying a 404. try_files $uri$uri/ =404; # Uncomment to enable naxsi on this location# include /etc/nginx/naxsi.rules }}
3.修改nginx.conf檔案,在http段下添加剛才的路徑,例include /etc/nginx/conf.d/vhosts_conf/*.conf;4.將網頁檔案放到剛配置的路徑中
cp -r 檔案源路徑 /usr/share/nginx/wlj
5.重新載入nginx的設定檔
service nginx reload
3.訪問網站
例:101.201.196.130:8080/index.html
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
').text(i)); }; $numbering.fadeIn(1700); }); });
以上就介紹了linux配置webserver簡易步驟,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。