Giter VIP home page Giter VIP logo

Comments (2)

airmonitor avatar airmonitor commented on September 13, 2024

Hey @adrianovieira.

Many thx for your work!

From my side I've reconfigured little apache config to allow listening on port 443.

This allowed me to easily use ingress with https backend

Also I bumped container version to 12.0.4

`
apiVersion: v1
kind: ConfigMap
metadata:
name: apache-cm
data:
openproject.conf: |
<VirtualHost *:80>
ServerName default
DocumentRoot /app/public

  ProxyRequests off
  ProxyPreserveHost On


  <Location />
    ProxyPass http://127.0.0.1:8080/ retry=0
    ProxyPassReverse http://127.0.0.1:8080/
  </Location>
</VirtualHost>


<VirtualHost *:443>
    SSLEngine On
    SSLCertificateFile      /etc/ssl/certs/ssl-cert-snakeoil.pem
    SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key

    RequestHeader set X-Forwarded-Proto "https"

    ServerName _default_
    DocumentRoot /app/public

    ProxyRequests off
    <Location />
        ProxyPass http://127.0.0.1:8080/ retry=0
        ProxyPassReverse http://127.0.0.1:8080/
    </Location>


 </VirtualHost>

<IfModule mod_ssl.c>
    SSLStaplingCache shmcb:/var/run/apache2/stapling_cache(128000)
</IfModule>

`

from openproject-deploy.

machisuji avatar machisuji commented on September 13, 2024

I'm sorry we didn't reply to this. Thanks for sharing your work. In the meantime we had developed our own helm charts independently: https://charts.openproject.org/

But perhaps we can learn something from what you've build. Ideally you wouldn't need to maintain your own version.
Please feel free to check out our helm charts too and let us know if you find any issues that would prevent you from using them.

I'll close this issue, but feel to open a new one in that case.

from openproject-deploy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.