linux下nginx的配置段

來源:互聯網
上載者:User

linux下nginx的配置段 Nginx配置段 Event { // 一般是配置nginx進程與串連的特性 // 如幾個同時工作  worker_connections  1024; // 這是指 一個子進程最大允許連1024個串連 } http {  //這是配置http伺服器的主要段      Server1 { // 這是虛擬機器主機段                     Location {  //定位,把特殊的路徑或檔案再次定位 ,如image目錄單獨處理             }             /// 如.php單獨處理      }      Server2 {      } } 例子1: 基於網域名稱的虛擬機器主機     server {         listen 80;  #監聽連接埠         server_name a.com; #監聽網域名稱         location / {                 root /var/www/a.com;   #根目錄定位                 index index.html;         }     } 例子2: 基於連接埠的虛擬機器主機配置     server {         listen 8080;         server_name 192.168.1.204;         location / {                 root /var/www/html8080;                 index index.html;         }     }  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.