server {
listen 80;
listen [::]:80;
server_name barsandalyesi.com.tr www.websitesi.com.tr;
root /home/cloudpanel/htdocs/websitesi.com.tr/htdocs;
include /etc/nginx/cloudpanel-includes/*.conf;
# bu kısmı ekle
location /.well-known/acme-challenge/ {
root /home/cloudpanel/htdocs/websitesi.com.tr/htdocs;
allow all;
}
#buraya kadar
location / {
return 301 https://$host$request_uri;
}
}