Last Update: May 13, 2019
Offline Version
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module gg | |
using Compose, Gadfly | |
PositionedGuide = Guide.PositionedGuide | |
top_guide_position = Guide.top_guide_position | |
right_guide_position = Guide.right_guide_position | |
struct Marginal <: Gadfly.GuideElement | |
side::String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- main | |
- master | |
tags: '*' | |
pull_request: |