nginx 时区设置 修改为本地时间

/etc/nginx/sites-available/default

location中添加autoindex_localtime on;

server {
        listen 80 default_server;
        root /var/www/;
        # Add index.php to the list if you are using PHP
        index index.html index.htm index.nginx-debian.html;
        server_name _;

        location / {
                try_files $uri $uri/ =404;
                autoindex_localtime on;
        }
}

sudo /etc/init.d/nginx restart

posted @ 2022-04-01 10:22  船长博客  阅读(3087)  评论(0编辑  收藏  举报
永远相信美好的事情即将发生!