Oh no...
The Working Undead!
1 Like
Working stiffs, ya know...
1 Like
My output:
$ curl -Iki6 notgerardo.com
HTTP/1.1 301 Moved Permanently
Server: nginx/1.17.10 (Ubuntu)
Date: Wed, 08 Sep 2021 13:59:38 GMT
Content-Type: text/html
Content-Length: 179
Connection: keep-alive
Location: https://notgerardo.com/
1 Like
Maybe a problem reaching past the reverse proxy?
For reference:
server {
listen 80;
listen [::]:80;
server_name notgerardo.com www.notgerardo.com;
if ($host = notgerardo.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = www.notgerardo.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
return 404; # managed by Certbot
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name notgerardo.com www.notgerardo.com;
location = /favicon.ico {
access_log off;
log_not_found off;
}
location /static/ {
root /home/gerardo/not_gerardo/mysite;
}
location / {
include proxy_params;
proxy_pass http://unix:/home/gerardo/not_gerardo/mysite/mysite.sock;
}
ssl_certificate /etc/letsencrypt/live/notgerardo.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/notgerardo.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
}
Mine is still:
curl -Iki6 notgerardo.com
HTTP/1.1 403 Forbidden
Connection: close
Content-Type: text/html
Cache-Control: no-cache
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Content-Security-Policy: frame-ancestors 'self'
Content-Length: 3446
Selective servicing...
[it doesn't like my IP or country]
1 Like
Disregard.
It is my own firewall that is blocking me from getting to you! LOL
It's because it is seen as a "Newly Observed Domain".
1 Like
Damn!
The man is so strict on security that he even protects himself from himself. That's hardcore.
2 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.