Directories on host machine:
-
/data/certbot/letsencrypt -
/data/certbot/www -
Nginx server in docker container
docker run -d --name nginx \
Directories on host machine:
/data/certbot/letsencrypt
/data/certbot/www
Nginx server in docker container
docker run -d --name nginx \
| [ | |
| { | |
| "country": "Afghanistan", | |
| "country_iso_2_char_code": "AF", | |
| "country_iso_3_char_code": "AFG", | |
| "un_m49": 4, | |
| "currency_iso_3_char_code": "AFN", | |
| "currency_name": "Afghan afghani" | |
| }, | |
| { |
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| Title | URI | |
|---|---|---|
| Flurry by Yahoo | https://dev.flurry.com/secure/signup.do | |
| Google NikCollection | https://dl.google.com/edgedl/photos/nikcollection-full-1.2.11.dmg | |
| Bitbucket | http://bitbucket.org/ | |
| SoftLayer | http://softlayer.com/ | |
| VirtualBox | http://download.virtualbox.org/virtualbox/5.0.16/VirtualBox-5.0.16-105871-OSX.dmg | |
| Docker Hub | https://hub.docker.com/ | |
| Oracle | http://oracle.com/ | |
| Java | http://java.com | |
| Sun | http://sun.com |
| yum update | |
| #Install for compiling and configuring needs | |
| yum install nano bzip2 gcc git pkgconfig autoconf automake libtool gperf byacc libxslt bison flex | |
| #If in a VM you will need to install files for kernel dev to load Guest additions (VirtualBox) | |
| yum install kernel-devel | |
| #Mount the guest additions CD and install | |
| sudo mount /dev/sr0 /media |
| package com.cloudwick.mapreduce.FileSystemAPI; | |
| import java.io.BufferedInputStream; | |
| import java.io.BufferedOutputStream; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; |
| package lan.dk.podcastserver.utils.multipart; | |
| import lan.dk.podcastserver.utils.MimeTypeUtils; | |
| import org.apache.commons.lang3.StringUtils; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import javax.servlet.ServletOutputStream; | |
| import javax.servlet.http.HttpServletRequest; | |
| import javax.servlet.http.HttpServletResponse; |
| --- | |
| layout: none | |
| --- | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
| {% for post in site.posts %}{% unless post.unpublished == false %}<url> | |
| <loc>{{ site.url }}{{ post.url }}</loc> | |
| <lastmod>{% if post.sitemap.lastmod %}{{ post.sitemap.lastmod | date: "%Y-%m-%d" }}{% else %}{{ post.date | date_to_xmlschema }}{% endif %}</lastmod>{% if post.sitemap.changefreq %} | |
| <changefreq>{{ post.sitemap.changefreq }}</changefreq>{% endif %}{% if post.sitemap.priority %} | |
| <priority>{{ post.sitemap.priority }}</priority>{% endif %} |