You are here |
www.workingwith.me.uk | ||
| | | |
willhaley.com
|
|
| | | | I recently noticed, by means of a Google search, that an old post of mine was still alive and well on my Octopress site. "That's odd", I thought, since the page no longer lived in my source control and the page still lived on even after running a rake deploy. This was the culprit: rsync_delete = false in my Rakefile I had this set to false for a very particular reason. My public_html directory is loaded not only with my Octopress files, but a number of other files that I use to host other sites from different domains using the same Apache instance. | |
| | | |
www.thoughtco.com
|
|
| | | | The mod_rewrite module of the Apache web server gives you all kinds of flexibility when rewriting URLs. Learn how to use Apache mod-rewrite and what it's best used for. | |
| | | |
etbe.coker.com.au
|
|
| | | | When I first put my new blog online I didn't think to set the custom permalinks option to avoid having /index.php in all URLs (which wastes a few bytes and looks nasty). So I decided to chang... | |
| | | |
negativesign.com
|
|
| | In my previous post I talked about how to build some Docker containers to run a deep learning-focused1 JupyterHub instance. It's nice for several reasons if the JupyterHub server brings itself up when the system starts. Here's how to do that-an adaptation of this Stack Overflow post. Create a file at /etc/systemd/system/docker-jupyterhub.service and put the following text into the file. [Unit] Description=JupyterHub container Requires=docker.service After=docker.service [Service] Restart=always ExecStart... |