-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
1,519 additions
and
150 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fabio | ||
dist/ |
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM ubuntu | ||
RUN apt-get update && apt-get -y install unzip make git-core | ||
ARG consul_version | ||
ARG vault_version | ||
ARG go_version | ||
COPY consul_${consul_version}_linux_amd64.zip /tmp | ||
COPY vault_${vault_version}_linux_amd64.zip /tmp | ||
COPY go${go_version}.linux-amd64.tar.gz /tmp | ||
RUN unzip /tmp/consul_${consul_version}_linux_amd64.zip -d /usr/local/bin | ||
RUN unzip /tmp/vault_${vault_version}_linux_amd64.zip -d /usr/local/bin | ||
RUN tar -C /usr/local -x -f /tmp/go${go_version}.linux-amd64.tar.gz | ||
ENV PATH=/usr/local/go/bin:/root/go/bin:$PATH | ||
WORKDIR /root/go/src/github.com/fabiolb/fabio | ||
COPY . . | ||
CMD "/bin/bash" |
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "FastCGI Upstream" | ||
--- | ||
|
||
To support FastCGI upstream add `proto=fcgi` option to the `urlprefix-` tag. | ||
|
||
FastCGI upstreams support following configuration options: | ||
|
||
- `index`: Used to specify the index file that should be used if the request URL does not contain a | ||
file. | ||
- `root`: Document root of the FastCGI server. | ||
|
||
Note that `index` and `root` can also be set in Fabio configuration as global default. | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "fcgi.index" | ||
--- | ||
|
||
`fcgi.index` configures the index file to be used in FastCGI requests if the URL does not contain | ||
it. | ||
|
||
Default value is | ||
|
||
``` | ||
fcgi.index = index.php | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "fcgi.path.split" | ||
--- | ||
|
||
`fcgi.path.split` specifies how to split the URL; the split value becomes the end of the first part | ||
and anything in the URL after it becomes part of the `PATH_INFO` CGI variable. | ||
|
||
Default value is | ||
|
||
``` | ||
fcgi.path.split = .php | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: "fcgi.root" | ||
--- | ||
|
||
`fcgi.root` sets the document root for FastCGI requests. | ||
|
||
Default value is empty string | ||
|
||
``` | ||
fcgi.root = | ||
``` |
Oops, something went wrong.