Ubuntu phpinfo 다운로드 현상 or 백화현상 (설치환경)Ubuntu 23.10, nginx, php8.2, mariadb, ph…
페이지 정보
본문
라즈베리파이4에
Ubuntu 23.10 nginx, php8.2, mariadb 설치 후 php 확인을 위해 경로 /var/www/html/phpinfo.php 작성 <? php phpinfo(); ?> 후 아이피(도메인)/phpinfo.php 접속하니 다운로드 증상 (흔히 나타나는 증상) 나타남.
수정
1. /etc/nginx/nginx.conf 내용중에 default_type application/octet-stream; --> default_type text/html;
2, /etc/nginx/fastcgi_params 첫줄에 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 추가함.
3. /etc/nginx/sites-available/default
주석해제 location ~ \.php$ {
주석해제 include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
주석해제 fastcgi_pass unix:/run/php/php8.2-fpm.sock;
# With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
주석해제 }
4. systemctl restart php8.2-fpm
5. systemctl restart nginx
#<VirtualHost *:80>
#ServerName 도메인명.com
#ServerAlias 도메인명.com
# ServerAdmin ???gmail.com
# DocumentRoot /home/디렉토리
# ErrorLog /var/log/???com-error.log
# CustomLog /var/log/???com-access.log combined
# <Directory /home/momjoacom>
# Require all granted
# AllowOverride All
# </Directory>
#</VirtualHost>
- 이전글GIMP = GNU Image Manipulation Program (그누 이미지 처리 프로그램) & 플러그인 설치 24.03.07
- 다음글라즈베리파이4 docker 설치 24.02.10
댓글목록
등록된 댓글이 없습니다.