1. 程式人生 > >nginx入門示例

nginx入門示例

inux 路徑 set ont ive 訪問 usr location access

nginx使用域名訪問

(Tip) nginx目錄解析

  conf/nginx.conf #主要的配置文件目錄
  html #nginx的默認發布目錄,部署完後 網站會在這個目錄
  nginx安裝目錄為: /usr/local/nginx  配置文件目錄:/usr/local/nginx/conf 發布目錄: /usr/local/nginx/html

(1)修改 /usr/local/nginx/conf 目錄下的配置文件 nginx.conf,在原有的nginx.conf文件中添加

    # another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;

# location / {
# root html;
# index index.html index.htm;
# }
#}

#在上述文件下添加如下配置
server { listen
80; server_name www.ddffxx.com; #charset koi8-r; #access_log logs/host.access.log main; location / { root html/demo; index index.html index.htm; } }

配置解析:

server      #表示一個服務

listen       #定義監聽的端口號

server_name #定義訪問時的輸入的域名

location #路徑

root      #nginx發布的文件夾命名

index      #nginx發布的文件夾下的頁面

(2)根據配置文件中的配置新建文件夾與頁面

cd /usr/lcoa/nginx #進入nginx安裝目錄

cd html #進入發布目錄

mkdir demo #新建配置文件中root指定的文件目錄

cp index.html demo #將默認的index.htm頁面復制到demo目錄下。(這裏對應index的配置)

(3)修改windows的hosts文件

  文件位置: C:\Windows\System32\drivers\etc hosts


  在文件的最後添加如下配置: 安裝nginx的主機ip nginx配置文件中指定的 server_name ,示例如下:

119.23.24.87 www.ddffxx.com

(4)在linux上啟動nginx

  /usr/local/nginx/sbin/nginx

(5)在瀏覽器訪問nginx

  www.ddffxx.com

nginx入門示例