nginx 는 그림 경로 와 html 정적 페이지 에 접근 하 는 방법 을 설정 합 니 다.

2337 단어
nginx 는 그림 경로 와 html 정적 페이지 에 접근 하 는 방법 을 설정 합 니 다.
전재 하 다   장 금 남   2016-12-07   조회 수: 2849
 
nginx 가 그림 주 소 를 방문 하고 html 정적 페이지 를 방문 하 는 설정 을 알려 드 립 니 다.
1. 실험 환경
우선 어떤 경로 에서 든 해당 디 렉 터 리 를 만 듭 니 다.그림 아래
2. 사용자 정의 html 또는 그림 을 넣 습 니 다.
3. nginx 설정
user root;  
worker_processes 1;  
  
#error_log logs/error.log;  
#error_log logs/error.log notice;  
#error_log logs/error.log info;  
  
#pid    logs/nginx.pid;  
  
  
events {  
  worker_connections 1024;  
}  
  
  
http {  
  include    mime.types;  
  default_type application/octet-stream;  
  
  log_format main '$remote_addr - $remote_user [$time_local] "$request" '  
           '$status $body_bytes_sent "$http_referer" '  
           '"$http_user_agent" "$http_x_forwarded_for"';  
  
  access_log logs/access.log main;  
  
  sendfile    on;  
  #tcp_nopush   on;  
  
  #keepalive_timeout 0;  
  keepalive_timeout 65;  
  
  #gzip on;  
  
  
  server {  
    listen    80;#     
    server_name localhost;#    
  
    charset utf-8;  
  
    #access_log logs/host.access.log main;  
  
  location ~ .*\.(gif|jpg|jpeg|png)$ {  
    expires 24h;  
      root /home/images/;#          
      access_log /usr/local/websrv/nginx-1.9.4/logs/images.log;#        
      proxy_store on;  
      proxy_store_access user:rw group:rw all:rw;  
      proxy_temp_path     /home/images/;#        
      proxy_redirect     off;  
      proxy_set_header    Host 127.0.0.1;  
      client_max_body_size  10m;  
      client_body_buffer_size 1280k;  
      proxy_connect_timeout  900;  
      proxy_send_timeout   900;  
      proxy_read_timeout   900;  
      proxy_buffer_size    40k;  
      proxy_buffers      40 320k;  
      proxy_busy_buffers_size 640k;  
      proxy_temp_file_write_size 640k;  
      if ( !-e $request_filename)  
      {  
         proxy_pass http://127.0.0.1;#  80    
      }  
  }   
  
    location / {  
      root  /home/html; #html     
      index index.html index2.htm; #html     
 
    } 
  
    error_page 404       /404.html; 

4. 컴 파일 에 오류 가 있 는 지 확인 하고 오류 가 없 으 면 설정 에 성공 합 니 다.
5. nginx 를 방문 하면 방문 한 그림 주소 에 접근 할 수 있 습 니 다.
6. 사용자 정의 html 에 접근 할 때.
성공
 
 
 
다음으로 전송:http://www.jb51.net/article/99305.ht

좋은 웹페이지 즐겨찾기