nginx 첫 페이지 정적 화 방안
3888 단어 nginx
if ( $host ~* (.*)\.(.*)\.(.*))
{
set $domain $1;
}
location =/
{
rewrite (.*) /html/$domain.html last;
}
# location =/ {
# index index.html index.htm;
# if (!-f $request_filename){
# rewrite (.*) /template.action;
# }
# }
이전 설정 은 / template. action 으로 / 전송 하기
하위 도 메 인 이름 을 html 페이지 로 전송 해 야 합 니 다.
man. frady. info 에서 man. frady. info / html / man. html 로 전송
완전한 설정
#user nobody;
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;
#add www.frady.info
upstream mybalance {
ip_hash;
server 192.168.1.109:8080;
server 192.168.1.109:28080;
}
server {
listen 80;
server_name *.frady.info ;
set $htdocs D:/java/tomcat6/webapps/ROOT/;# htdocs
root $htdocs;
charset utf-8;
rewrite ^/products/([0-9]+)\.html$ /showWare.action?ware.wareId=$1 last;
location ~^/(WEB-INF)/{
deny all;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf|css|js|html)$ {
expires 30d;
}
location /zanwork/(shopUpload|upload) {
proxy_pass http://mybalance;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~*.(jsp|do|action)$
{
index index.jsp;
proxy_pass http://mybalance;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
if ( $host ~* (.*)\.(.*)\.(.*))
{
set $domain $1;
}
location =/
{
rewrite (.*) /html/$domain.html last;
}
# location =/ {
# index index.html index.htm;
# if (!-f $request_filename){
# rewrite (.*) /template.action;
# }
# }
}
}
실제로 다음 설정 이 필요 할 수도 있 습 니 다. 그래 야 정적 페이지 가 없 는 사용 자 를 잘 호 환 할 수 있 습 니 다.
if ( $host ~* (.*)\.(.*)\.(.*))
{
set $domain $1; # ,
}
location =/
{
set $zanHtmlFile $htdocs/htmlpage/indexHtml/$domain/index.html;#
if (-f $zanHtmlFile){# ,
rewrite / /htmlpage/indexHtml/$domain/index.html last;
}
if (!-f $zanHtmlFile){# ,
rewrite / /template4.action last;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.