제목 | https 프로토콜로 변경 후에 404에러가 뜨는데 ... | ||
---|---|---|---|
글쓴이 | 닉 | 작성시각 | 2016/04/13 10:26:17 |
|
|||
안녕하세요. 보안서버 처음 작업해서 오류가 발생해서 당황스럽습니다. 포트는 457번으로 했고 https로 했는데 기존 로컬 http에서 작업하던곳은 잘 되는데 404가 발생하네요 .. ㅠ_ㅠ |
|||
다음글 | php 버전이 낮아서 전역 함수를 추가 하려 할 때는? (1) | ||
이전글 | MySQL, Auto_INCREMENT 사용 시 질문입... (3) | ||
닉
/
2016/04/13 10:42:25 /
추천
0
|
닉
/
2016/04/13 11:30:22 /
추천
0
흠 .. nginx 문제가 아니라 리눅스와 윈도우 문제인지 ... ㅠ_ㅠ;; 당황스럽네요 ..
|
닉
/
2016/04/13 12:37:52 /
추천
0
아 황당 ... 파일 대소문자 문제였네요 .. 죄송죄송 .. 이 게시물 삭제하고 싶다 ... ㅋ |
nginx를 사용하는데 설정이 잘못됬을거 같네요 .. ㅠ_ㅠ
현 설정입니다.
server {
listen 457 ssl;
server_name sub.xxx.com;
ssl_certificate /etc/nginx/conf.d/ssl/xxx.com.crt;
ssl_certificate_key /etc/nginx/conf.d/ssl/xxx.com.key;
charset utf-8;
root /home/webuser/website2/xxx;
access_log /var/log/nginx/xxx-access.log;
error_log /var/log/nginx/xxx-error.log;
index index.php index.html index.htm;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
client_max_body_size 20M;
location / {
#try_files $uri $uri/ /index.php?$args;
try_files $uri $uri/ /index.php?/$request_uri;
}
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires max;
}
location ~ /\.ht {
deny all;
}
location ~ \.php$ {
limit_req zone=limit burst=25 nodelay;
try_files $uri =404;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}