Skip to content

Instantly share code, notes, and snippets.

@wilxsv
Created July 9, 2017 19:35
Show Gist options
  • Save wilxsv/d984fb887a47c5e0ef3370d7ac9e2039 to your computer and use it in GitHub Desktop.
Save wilxsv/d984fb887a47c5e0ef3370d7ac9e2039 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name DOMINIO.ORG ;
root /opt/pentaho-server/tomcat/webapps/pentaho;
location / {
proxy_pass http://127.0.0.1:8080/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment