I have check through all configuration and the below was my config setting
server {
listen 80;
listen 443 ssl http2;
server_name clocking-site.comecodetogether.com;
root /www/wwwroot/clocking-site/public;
index index.php index.html;
ssl_certificate /www/server/panel/vhost/cert/clocking-site.comecodetogether.com/fullchain.pem;
ssl_certificate_key /www/server/panel/vhost/cert/clocking-site.comecodetogether.com/privkey.pem;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/www/server/php/82.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff2?)$ {
expires 30d;
access_log off;
}
location ~ /\. {
deny all;
}
access_log /www/wwwlogs/clocking-site.comecodetogether.com.log;
error_log /www/wwwlogs/clocking-site.comecodetogether.com.error.log;
}