hmm: Apache Server: GCI File kann .css Datei nicht nutzen

Beitrag lesen

ich habe leider keinen conf-enabled ordner. der header wird korrekt gesetzt, dass gci file hat 300-400 Zeilen und das Projekt etliche Files. Das projekt läuft in einem anderen System, dh der fehler liegt eher an meinem Dockercontainer bzw meinem Apache Server.

ich habe auch keine error.log datei die ich grepen könnte.

hier eine abstraktion meines dockerfiles:

FROM rhel7:latest
USER root

RUN yum -y install deltarpm yum-utils --disablerepo=*-eus-* --disablerepo=*-htb-* \
    --disablerepo=*-ha-* --disablerepo=*-rt-* --disablerepo=*-lb-* --disablerepo=*-rs-* --disablerepo=*-sap-*

RUN yum-config-manager --disable *-eus-* *-htb-* *-ha-* *-rt-* *-lb-* *-rs-* *-sap-* > /dev/null

RUN yum update -y && \
    yum install httpd procps-ng -y

# Add configuration file
RUN export https_proxy=ip1 && \
    export http_proxy=ip2

RUN cd /var/www/cgi-bin/ && \
    mkdir projektname

RUN yum install java-1.7.0-openjdk -y && \
    yum install gcc -y && \
    yum install gcc-c++ -y && \
    yum install openldap-devel -y && \
    yum install python-devel -y

RUN curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" && \
    python get-pip.py && \
    pip install --upgrade pip

RUN pip install -r /var/req.pip

COPY projektname /var/www/cgi-bin/projektname
RUN chown root:apache /var/www/cgi-bin/projektname && \
    chmod -R 755 /var/www/cgi-bin/projektname
EXPOSE 8080

# Start the service
CMD ["-D", "FOREGROUND"]
ENTRYPOINT ["/usr/sbin/httpd"]