HEX
Server: nginx/1.24.0
System: Linux prod-btpayments-io 6.14.0-1018-aws #18~24.04.1-Ubuntu SMP Mon Nov 24 19:46:27 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.3.19
Disabled: NONE
Upload Files
File: //etc/nginx/sites-enabled/RobotStoreUS-store.conf
server {
    server_name robotstoreus.com;
    root /var/www/RobotStoreUS/RobotStoreUS-store;

    include snippets/app/wordpress-php83.app;

    access_log /var/log/nginx/RoBotStoreUS-store.access.log xfor;
    error_log  /var/log/nginx/RoBotStoreUs-store.error.log;

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/robotstoreus.com/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/robotstoreus.com/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}


server {
    if ($host = robotstoreus.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    listen 80;
    server_name robotstoreus.com;
    return 404; # managed by Certbot
}