All posts by PF
ovh manager bugged out

cloudflare – fixing redirect loops when using Flexible SSL

I’m deploying SSL to one of my domains and some of his subdomains…
I was forcing any request to HTTP to be redirected to HTTPS with NGINX but…. it was causing a loop!
I had to disable the redirect at nginx and do it with Cloudflare Page Rules.

Enter passphrase for key id_rsa.pub
So!,
I was trying to SSH a host…
Somehow it was requesting id_rsa.pub……… and asking for an password!
![]()
…
This is how I solved it…
ssh -v -i path/to/id_rsa [email protected]
!!
cloudflare – Rate Limiting
Rate Limiting
Rate limit specific traffic from IP addresses based on URI, threshold, and other attributes for added protection from attacks.
Traffic Manager
Configure load balancing and failover across multiple servers, data centers and geographic regions, based on active health checks.
Note: If you’re currently a part of the API-only Early Access program, this card will not update to reflect your status. Please consult the API documentation to configure your Load Balancers.

.htaccess: Invalid command ‘ExpiresActive’ and .htaccess: Invalid command ‘Header’
.htaccess: Invalid command ‘ExpiresActive’, perhaps misspelled or defined by a module not included in the server configuration,
ln -s /etc/apache2/mods-available/expires.load /etc/apache2/mods-enabled/
.htaccess: Invalid command ‘Header’, perhaps misspelled or defined by a module not included in the server configuration
a2enmod headers
At the end… restart Apache!
service apache2 restart
How to get a Let’s Encrypt certificate while using CloudFlare
How to get a Let’s Encrypt certificate while using CloudFlare
certbot-auto certonly --webroot --webroot-path /usr/share/nginx/html/ --renew-by-default --email [email protected] --text --agree-tos -d example.tld -d www.example.tld
SBTRKT – Wildfire
Boris Dlugosch – Cycle
as heard on https://soundcloud.com/lektroluvrecords/dr-lektroluv-live-switch (13m)
Warning: Unknown: open(/var/lib/php/session/ O_RDWR) failed: Permission denied (13)
I was getting the following error on a *fresh* CentOS…
Warning: Unknown: open(/var/lib/php/session/sess_isu2r2bqudeosqvpoo8a67oj02, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0
This will do the work…
chown -R nginx:nobody /var/lib/php/session && chmod -R 770 /var/lib/php/session
