mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add nginx proxy docker container Ease test/verification of running Grafana thru a reverse proxy * Add apache proxy docker container Ease test/verification of running Grafana thru a reverse proxy * Fix relative urls for reset password page * Fix relative urls for signup page * Fix relative urls for login page * Fix relative urls edit plugin page
19 lines
389 B
Nginx Configuration File
19 lines
389 B
Nginx Configuration File
events { worker_connections 1024; }
|
|
|
|
http {
|
|
sendfile on;
|
|
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Host $server_name;
|
|
|
|
server {
|
|
listen 10080;
|
|
|
|
location /grafana/ {
|
|
proxy_pass http://localhost:3000/;
|
|
}
|
|
}
|
|
} |