Something like the way thenextweb does their interstitial ads
A Pen by Mpasho Tech on CodePen.
| ssh-copy-id -i ~/.ssh/id_rsa.pub remote-host |
| upstream lucky { | |
| server xfssvsd.co.ke:443; | |
| } | |
| server { | |
| listen 443 ssl default_server; | |
| listen [::]:443 ssl default_server; | |
| ssl_certificate /etc/nginx/ssl/xfssvsd.co.ke/fullchain.pem; | |
| ssl_certificate_key /etc/nginx/ssl/xfssvsd.co.ke/privkey.pem; | |
| ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH"; |
| <?php | |
| // WordPress stores the site URL in the database by default (which I have never | |
| // understood), and it's a pain to have to type out the UPDATE SQL or search in | |
| // phpMyAdmin to change it. This is a simple way to put the URL into | |
| // wp-config.php instead. | |
| // Note that you will still need to update any URLs that appear in the content, | |
| // especially when you copy a database from a development site to production: | |
| // https://gist.github.com/davejamesmiller/a8733a3fbb17e0ff0fb5 |
Something like the way thenextweb does their interstitial ads
A Pen by Mpasho Tech on CodePen.