nginx逆エージェントおよびWebページへのログインのフィルタリング

533 ワード

1.nginxをダウンロードし、confを修正する
	server {
	  #server_name 127.0.0.1
	  listen 801;
	  location = / {
                return 404;

	  }
	  location  /index.html {
                return 404;

	  }
	  location / {
		proxy_pass http://127.0.0.1:1111;
	  }
	}

この例では、801ポートがローカル1111ポートに移行する、indexがフィルタリングされる.htmlとホスト名の後にどんな住所を持ちません
location  = / {
  #      / ,             
  [ configuration A ]
}

location  / {
  #           /   ,              
  #                
  [ configuration B ]
}