- 파일업로드 체크
- php 캐쉬제거
- ViewBag
- ViewData
- SSD 복사
- asp.net core Select
- 파일업로드 유효성체크
- ASP.Net Core 404
- XSS PHP
- 맥 오라클설치
- javascript 유효성체크
- 말줄임표시
- 바코드 생성하기
- jquery 바코드
- javascript 바코드 생성
- 하드 마이그레이션
- TempData
- 404에러페이지
- 타임피커
- 바코드 스캔하기
- javascript 바코드스캔
- 하드 윈도우 복사
- jquery 바코드생성
- XSS방어
- asp.net Select
- django 엑셀불러오기
- asp.net dropdownlist
- Mac Oracle
- 강제이동
- javascript redirection
웹개발자의 기지개
[Ubuntu] nginx 웹서버에서 가상호스트 추가 설치하고 PHP7.4 도 연동하기 본문
[Ubuntu] nginx 웹서버에서 가상호스트 추가 설치하고 PHP7.4 도 연동하기
http://portfolio.wonpaper.net 2024. 1. 30. 22:55Ubuntu 에서 웹서버로 nginx 를 정상 설치하였다.
그리고, 필자는 PHP7.4-fpm 또한 무난히 설치하였는데, 가상호스트를 추가로 작업하고 싶었다.
/etc/nginx
위의 nginx 주요파일목록이다.
nano nginx.conf 으로 열어보고 안의 환경설정 소스들을 살펴보자.
http {
...
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
...
}
위에서
include /etc/nginx/sites-enabled 안의 관련 파일들이 바로 우리가 하려는 가상호스트 설정하는 파일들이 놓이는 파일들이라고 생각하면 된다.
cd sites-enabled 하니
먼저 default 심볼링 링크 파일만 덩그러니 보였다.
뒤에 경로를 따라가면 진짜 파일을 열어 볼수가 있다.
nano /etc/nginx/sites-available/default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $url $uri/ =404;
# }
#}
# server_name example.com;
|
cs |
이 소스가 default 기본 홈 디렉토리 부분이다. 굉장히 직관적이라서 PHP 관련 부분들도 # 주석만 풀어 주면 잘 연동되어 돌아간다.
그러면 이제 abc 일반 계정을 하나 만들고 /home/abc/www 를 기본 루트디렉토리로 하는 가상 호스트를 만들어 보자.
nano /etc/nginx/sites-available/abc
파일을 아래와 같이 동일한 형태로 만든다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
server {
listen 80;
listen [::]:80;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /home/abc/www;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
access_log /var/log/nginx/abc_access.log;
error_log /var/log/nginx/abc_error.log;
server_name abc.com www.abc.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
|
cs |
root 기본경로를 지정하고, server_name 을 도메인명으로 제대로 수정한다.
그다음 아래 명령어로 restart 시켜서 웹브라우저로 확인해 보면된다.
systemctl restart php7.4-fpm
systemctl restart nginx
'리눅스서버 > Ubuntu' 카테고리의 다른 글
[nginx] Ubuntu, 413 Request Entity Too Large 해결하기 - 대용량 업로드 가능토록 (0) | 2024.03.05 |
---|---|
[Ubuntu] ls: reading directory '.': Input/output error 해결 (0) | 2024.02.17 |
[Ubuntu] Java 여러개의 버전 설치 및 선택하기 (1) | 2023.12.26 |
[Ubuntu] mariadb root 비번 재설정 , mariadb 삭제하기, mariadb 재설치 (2) | 2023.12.02 |
[Ubuntu] vsftpd 설치 (0) | 2023.12.02 |