728x90
1. nginx 설정파일 디렉토리로 이동
cd /etc/nginx/sites-available
2. 설정 파일 수정
vi default
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;
#20240329 tomhoon modified
#root /var/www/html;
# <<<<<<<<<<<<<< 여기를 수정함 >>>>>>>>>>>>>>>
root /TodayWorkout/dist;
# Add index.php to the list if you are using PHP
index 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:/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;
#}
}
상대경로시
베이스가 되는 디렉토리는 아래와 같다.
3. nginx 재시작해주기
sysmtemctl restart nginx
- 시작 안되면 왜 안되는지 로그 확인하기
systemctl status nginx
'서버' 카테고리의 다른 글
ec2 - amazon linux1) jdk 설치하기 (1) | 2024.05.10 |
---|---|
ubuntu) pem key 생성 (0) | 2024.04.24 |
centos) mysql 설치 (0) | 2024.03.28 |
centos) node 버전 20버전으로 셋팅이 안되는 이유 (0) | 2024.03.28 |
centos) node 설치 후 프로젝트 npm install 하기 (0) | 2024.03.27 |