Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
55248f92
Unverified
Commit
55248f92
authored
Oct 31, 2019
by
Sofia Papagiannaki
Committed by
GitHub
Oct 31, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add devenv block for apache proxy working for Mac (#20119)
parent
a45ce365
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
0 deletions
+21
-0
devenv/docker/blocks/apache_proxy_mac/Dockerfile
+5
-0
devenv/docker/blocks/apache_proxy_mac/docker-compose.yaml
+10
-0
devenv/docker/blocks/apache_proxy_mac/ports.conf
+2
-0
devenv/docker/blocks/apache_proxy_mac/proxy.conf
+4
-0
No files found.
devenv/docker/blocks/apache_proxy_mac/Dockerfile
0 → 100644
View file @
55248f92
FROM
jmferrer/apache2-reverse-proxy:latest
COPY
ports.conf /etc/apache2/sites-enabled
COPY
proxy.conf /etc/apache2/sites-enabled
\ No newline at end of file
devenv/docker/blocks/apache_proxy_mac/docker-compose.yaml
0 → 100644
View file @
55248f92
# This will proxy all requests for http://localhost:10081/grafana/ to
# http://localhost:3000 (Grafana running locally)
#
# Please note that you'll need to change the root_url in the Grafana configuration:
# root_url = %(protocol)s://%(domain)s:10081/grafana/
apacheproxy
:
build
:
docker/blocks/apache_proxy_mac
ports
:
-
"
10081:10081"
devenv/docker/blocks/apache_proxy_mac/ports.conf
0 → 100644
View file @
55248f92
Listen
10081
\ No newline at end of file
devenv/docker/blocks/apache_proxy_mac/proxy.conf
0 → 100644
View file @
55248f92
<
VirtualHost
*:
10081
>
ProxyPass
/
grafana
/
http
://
host
.
docker
.
internal
:
3000
/
ProxyPassReverse
/
grafana
/
http
://
host
.
docker
.
internal
:
3000
/
</
VirtualHost
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment