Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed an Apache header error #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions 001-iipsrv.conf
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@

# Set our environment variables for the IIP server
FcgidInitialEnv VERBOSITY "10"
FcgidInitialEnv MAX_LAYERS "-1"
FcgidInitialEnv LOGFILE "/tmp/iipsrv.log"
FcgidInitialEnv MAX_IMAGE_CACHE_SIZE "10"
FcgidInitialEnv JPEG_QUALITY "50"
FcgidInitialEnv MAX_IMAGE_CACHE_SIZE "1024"
FcgidInitialEnv JPEG_QUALITY "100"
FcgidInitialEnv MAX_CVT "3000"
FcgidInitialEnv FILESYSTEM_PREFIX "/var/www/localhost/images/"

Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ EXPOSE 80

# enable fcgid mod
RUN a2enmod fcgid
RUN a2enmod headers

# disable default site conf
RUN sudo a2dissite 000-default.conf
Expand Down