linux 서버 상용 스 크 립 트

더 읽 기
linux 서버 상용 스 크 립 트
(1)nginx
프로필 다시 불 러 오기:
reload.sh :
#!/bin/sh
/usr/local/nginx/sbin/nginx -s reload   

 
시작 nginx:
#!/bin/sh
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf  

 
도 메 인 이름 전송:
/usr/local/nginx/vhosts/blog.hbjltv.com.conf  
server {
        listen 80;
        server_name blog.hbjltv.com;
#       rewrite ^/yhyc/(.*)$ http://www.yhskyc.com/$1 ;

        location /  {
                proxy_pass    http://hbjltv.com:8084/convention2/;
        #       proxy_redirect off ;

                index index.php index.html index.htm;
        }
location /convention2/  {
                proxy_pass    http://hbjltv.com:8084/convention2/;
        #       proxy_redirect off ;
        #
        #       #               index index.php index.html index.htm;
        #               }
        error_page 500 502 503 504 /50x.html;

        }
location /convention/upload/ {
 proxy_pass    http://hbjltv.com:8084/convention2/upload/;
}

}  

 
 (3) 파일 로 재 설정 하 는 동시에 콘 솔 에 표시
쓰다 tee -a
java -Dapp.home=$DEPLOY_DIR $JAVA_OPTS $JAVA_MEM_OPTS $JAVA_DEBUG_OPTS $JAVA_JMX_OPTS -classpath $CONF_DIR:$LIB_JARS $APP_MAINCLASS  2>&1 |tee -a $STDOUT_FILE

 
 
 
 

좋은 웹페이지 즐겨찾기