728x90
반응형
Welcome to nginx가 index.html로 제대로 작동했지만
index.php등 php파일 경로로 이동하면 다운로드 되는 등 오류가 발생했습니다
vi /etc/nginx/nginx.conf
nginx의 기본 설정 파일 nginx.conf 파일을 열어 수정합니다
반응형
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
client_max_body_size 20M;
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 4096;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80;
listen [::]:80;
server_name _;
#return 301 https://$server_name$request_uri;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
# 22-12-20
include /etc/nginx/default.d/*.conf;
location / {
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
root /var/wonmin_com/php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# 22-12-20
}
22-12-20 ~ 22-12-20 부분을 추가했습니다
fastcgi_pass 부분에 php-fpm 서버 아이피를 써야한다고 구글링해서 봤었는데
로컬인 127.0.0.1로 했더니 잘 됐습니다
nginx -t
저장하고 설정파일을 체크합니다
systemctl restart nginx
systemctl restart php-fpm
nginx와 php-fpm을 재시작하고 확인해봅시다!
반응형
'Linux' 카테고리의 다른 글
PHP 업로드 용량 수정 (0) | 2023.01.25 |
---|---|
[Nginx 업로드 오류] Failed to load resource: the server responded with a status of 413 (Request Entity Too Large) (0) | 2023.01.25 |
[Linux]DHCP 서버 (0) | 2022.12.15 |
[Linux] Samba 서버 (0) | 2022.11.15 |
[Linux] NFS 서버 (0) | 2022.11.15 |