본문 바로가기

서버

ubuntu) nginx 정적페이지 html 경로 변경

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