webapps refactoring
This commit is contained in:
27
apps/web/grav/Dockerfile
Normal file
27
apps/web/grav/Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
FROM php:7-fpm
|
||||
|
||||
RUN echo 'Acquire::http::proxy "http://apt-cache.lan";' >/etc/apt/apt.conf.d/proxy
|
||||
|
||||
ARG DEV_PKGS='zlib1g-dev libpng-dev libjpeg-dev libfreetype6-dev \
|
||||
libcurl4-gnutls-dev default-libmysqlclient-dev'
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y imagemagick git bash procps \
|
||||
${DEV_PKGS} && \
|
||||
docker-php-ext-configure gd --with-freetype --with-jpeg && \
|
||||
docker-php-ext-install -j$(nproc) gd && \
|
||||
docker-php-ext-install -j$(nproc) json && \
|
||||
docker-php-ext-install -j$(nproc) curl
|
||||
|
||||
# CLeanup
|
||||
RUN apt-get remove -y --purge ${DEV_PKGS} && \
|
||||
apt-get autoremove --purge -y && \
|
||||
apt-get clean -y && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
rm -rf /var/cache/apt/* /tmp/* /var/tmp/* /var/log/*
|
||||
|
||||
ADD docker-entrypoint.sh /
|
||||
|
||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
||||
|
||||
VOLUME [ "/data" ]
|
||||
5
apps/web/grav/docker-entrypoint.sh
Executable file
5
apps/web/grav/docker-entrypoint.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
exec "$@"
|
||||
62
apps/web/grav/urubu.yaml
Normal file
62
apps/web/grav/urubu.yaml
Normal file
@@ -0,0 +1,62 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: urubu
|
||||
labels:
|
||||
app: urubu
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: urubu
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: urubu
|
||||
spec:
|
||||
containers:
|
||||
- name: urubu
|
||||
image: "docker-registry.lan/urubu:arm64"
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8000
|
||||
protocol: TCP
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
resources:
|
||||
{}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: urubu
|
||||
labels:
|
||||
app: urubu
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
app: urubu
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: urubu
|
||||
spec:
|
||||
rules:
|
||||
- host: urubu.lan
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: urubu
|
||||
servicePort: http
|
||||
42
apps/web/nginx-test-deployment.yaml
Normal file
42
apps/web/nginx-test-deployment.yaml
Normal file
@@ -0,0 +1,42 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: nginx-deployment
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
run: nginx-deployment
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
run: nginx-deployment
|
||||
spec:
|
||||
containers:
|
||||
- image: nginx
|
||||
name: nginx-webserver
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: nginx-service
|
||||
spec:
|
||||
type: NodePort
|
||||
selector:
|
||||
run: nginx-deployment
|
||||
ports:
|
||||
- port: 80
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: nginx-test
|
||||
spec:
|
||||
rules:
|
||||
- host: nginx-test.lan
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: nginx-service
|
||||
servicePort: 80
|
||||
9
apps/web/piwigo/Dockerfile
Normal file
9
apps/web/piwigo/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM debian:stable-slim
|
||||
|
||||
#RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libwww-perl && \
|
||||
apt-get clean -y && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
rm -rf /var/cache/apt/* /tmp/* /var/tmp/*
|
||||
COPY remote_sync.pl /
|
||||
149
apps/web/piwigo/deployment.yaml
Normal file
149
apps/web/piwigo/deployment.yaml
Normal file
@@ -0,0 +1,149 @@
|
||||
---
|
||||
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: piwigo
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: piwigo
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
containers:
|
||||
- image: linuxserver/piwigo
|
||||
name: piwigo
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
# Use secret in real usage
|
||||
- name: TZ
|
||||
value: Europe/Berlin
|
||||
livenessProbe:
|
||||
failureThreshold: 10
|
||||
httpGet:
|
||||
path: /index.php
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
periodSeconds: 10
|
||||
successThreshold: 1
|
||||
timeoutSeconds: 5
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
- containerPort: 443
|
||||
name: https
|
||||
volumeMounts:
|
||||
- name: piwigo-persistent-storage
|
||||
mountPath: /config/www/gallery/galleries
|
||||
- name: piwigo-config
|
||||
mountPath: /config
|
||||
resources:
|
||||
requests:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
limits:
|
||||
memory: "1500Mi"
|
||||
cpu: "2000m"
|
||||
volumes:
|
||||
- name: piwigo-persistent-storage
|
||||
persistentVolumeClaim:
|
||||
claimName: piwigo-pv-claim
|
||||
- name: piwigo-config
|
||||
persistentVolumeClaim:
|
||||
claimName: piwigo-config
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: piwigo
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
ports:
|
||||
- name: http
|
||||
port: 80
|
||||
- name: https
|
||||
port: 443
|
||||
selector:
|
||||
app: piwigo
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: piwigo
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
rules:
|
||||
- host: foto.lan
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: piwigo
|
||||
servicePort: http
|
||||
---
|
||||
apiVersion: batch/v1beta1
|
||||
kind: CronJob
|
||||
metadata:
|
||||
name: piwigo-quicksync
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
schedule: '23 */1 * * *'
|
||||
concurrencyPolicy: Forbid
|
||||
jobTemplate:
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
restartPolicy: Never
|
||||
containers:
|
||||
- name: piwigo-quicksync
|
||||
image: docker-registry.lan/piwigo-sync:arm64
|
||||
imagePullPolicy: Always
|
||||
args:
|
||||
- /remote_sync.pl
|
||||
- --base_url=http://piwigo.default.svc.cluster.local/
|
||||
- --username=api
|
||||
- --password=D8Gt4P36q3457Yt
|
||||
resources:
|
||||
requests:
|
||||
memory: "24Mi"
|
||||
cpu: "20m"
|
||||
limits:
|
||||
memory: "100Mi"
|
||||
cpu: "500m"
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: piwigo-pv-claim
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
storageClassName: nfs-ssd
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 60Gi
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: piwigo-config
|
||||
labels:
|
||||
app: piwigo
|
||||
spec:
|
||||
storageClassName: nfs-ssd
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 2Gi
|
||||
59
apps/web/piwigo/remote_sync.pl
Executable file
59
apps/web/piwigo/remote_sync.pl
Executable file
@@ -0,0 +1,59 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# perl remote_sync.pl --base_url=http://localhost/piwigo/dev/branches/2.0 --username=plg --password=plg
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use LWP::UserAgent;
|
||||
use Getopt::Long;
|
||||
|
||||
my %opt = ();
|
||||
GetOptions(
|
||||
\%opt,
|
||||
qw/
|
||||
base_url=s
|
||||
username=s
|
||||
password=s
|
||||
/
|
||||
);
|
||||
|
||||
our $ua = LWP::UserAgent->new;
|
||||
$ua->agent('Mozilla/remote_sync.pl');
|
||||
$ua->cookie_jar({});
|
||||
|
||||
$ua->default_headers->authorization_basic(
|
||||
$opt{username},
|
||||
$opt{password}
|
||||
);
|
||||
|
||||
my $form = {
|
||||
method => 'pwg.session.login',
|
||||
username => $opt{username},
|
||||
password => $opt{password},
|
||||
};
|
||||
|
||||
my $result = $ua->post(
|
||||
$opt{base_url}.'/ws.php?format=json',
|
||||
$form
|
||||
);
|
||||
|
||||
# perform the synchronization
|
||||
$form = {
|
||||
'sync' => 'files',
|
||||
'display_info' => 1,
|
||||
'add_to_caddie' => 1,
|
||||
'privacy_level' => 0,
|
||||
'sync_meta' => 1, # remove this parameter, turning to 0 is not enough
|
||||
'simulate' => 0,
|
||||
'subcats-included' => 1,
|
||||
'submit' => 1,
|
||||
};
|
||||
|
||||
$result = $ua->post(
|
||||
$opt{base_url}.'/admin.php?page=site_update&site=1',
|
||||
$form
|
||||
);
|
||||
|
||||
use Data::Dumper;
|
||||
print Dumper($result);
|
||||
25
apps/web/rompr/Dockerfile
Normal file
25
apps/web/rompr/Dockerfile
Normal file
@@ -0,0 +1,25 @@
|
||||
FROM php:7-fpm
|
||||
|
||||
#RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy
|
||||
|
||||
ARG DEV_PKGS='zlib1g-dev libpng-dev libjpeg-dev libfreetype6-dev \
|
||||
libcurl4-gnutls-dev default-libmysqlclient-dev'
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y imagemagick git bash procps \
|
||||
${DEV_PKGS} && \
|
||||
docker-php-ext-configure gd --with-freetype --with-jpeg && \
|
||||
docker-php-ext-install -j$(nproc) gd && \
|
||||
docker-php-ext-install -j$(nproc) json && \
|
||||
docker-php-ext-install -j$(nproc) curl && \
|
||||
docker-php-ext-install -j$(nproc) mysqli && \
|
||||
docker-php-ext-install -j$(nproc) pdo pdo_mysql
|
||||
|
||||
# CLeanup
|
||||
RUN apt-get remove -y --purge ${DEV_PKGS} && \
|
||||
apt-get autoremove --purge -y && \
|
||||
apt-get clean -y && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
rm -rf /var/cache/apt/* /tmp/* /var/tmp/* /var/log/*
|
||||
|
||||
VOLUME [ "/rompr" ]
|
||||
3
apps/web/rompr/README.md
Normal file
3
apps/web/rompr/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
lighttpd is configured in etc_lighttpd
|
||||
generate a configmap with:
|
||||
kubectl create configmap rompr-lighttpd-config --from-file etc_lighthttpd/
|
||||
80
apps/web/rompr/deployment.yaml
Normal file
80
apps/web/rompr/deployment.yaml
Normal file
@@ -0,0 +1,80 @@
|
||||
---
|
||||
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: rompr
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: rompr
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: rompr
|
||||
spec:
|
||||
containers:
|
||||
- image: docker-registry.lan/rompr:arm64
|
||||
name: rompr
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- containerPort: 9000
|
||||
name: php-fpm
|
||||
volumeMounts:
|
||||
- name: rompr-data
|
||||
mountPath: /rompr
|
||||
- image: sebp/lighttpd:latest
|
||||
name: lighttpd
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
volumeMounts:
|
||||
- name: rompr-data
|
||||
mountPath: /rompr
|
||||
- name: rompr-lighttpd-config
|
||||
mountPath: /etc/lighttpd
|
||||
volumes:
|
||||
- name: rompr-data
|
||||
persistentVolumeClaim:
|
||||
claimName: rompr-data
|
||||
- name: rompr-lighttpd-config
|
||||
configMap:
|
||||
name: rompr-lighttpd-config
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: rompr
|
||||
spec:
|
||||
ports:
|
||||
- name: http
|
||||
port: 80
|
||||
selector:
|
||||
app: rompr
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: rompr
|
||||
spec:
|
||||
rules:
|
||||
- host: musik.lan
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: rompr
|
||||
servicePort: http
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: rompr-data
|
||||
spec:
|
||||
storageClassName: nfs-ssd
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 6Gi
|
||||
335
apps/web/rompr/etc_lighthttpd/lighttpd.conf
Normal file
335
apps/web/rompr/etc_lighthttpd/lighttpd.conf
Normal file
@@ -0,0 +1,335 @@
|
||||
###############################################################################
|
||||
# Default lighttpd.conf for Gentoo.
|
||||
# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/lighttpd.conf,v 1.3 2005/09/01 14:22:35 ka0ttic Exp $
|
||||
###############################################################################
|
||||
|
||||
# {{{ variables
|
||||
var.basedir = "/rompr"
|
||||
var.logdir = "/var/log/lighttpd"
|
||||
var.statedir = "/var/lib/lighttpd"
|
||||
# }}}
|
||||
|
||||
# {{{ modules
|
||||
# At the very least, mod_access and mod_accesslog should be enabled.
|
||||
# All other modules should only be loaded if necessary.
|
||||
# NOTE: the order of modules is important.
|
||||
server.modules = (
|
||||
"mod_rewrite",
|
||||
"mod_redirect",
|
||||
"mod_alias",
|
||||
"mod_access",
|
||||
# "mod_cml",
|
||||
# "mod_trigger_b4_dl",
|
||||
# "mod_auth",
|
||||
# "mod_status",
|
||||
# "mod_setenv",
|
||||
# "mod_proxy",
|
||||
# "mod_simple_vhost",
|
||||
# "mod_evhost",
|
||||
# "mod_userdir",
|
||||
"mod_compress",
|
||||
# "mod_ssi",
|
||||
# "mod_usertrack",
|
||||
"mod_expire",
|
||||
# "mod_secdownload",
|
||||
# "mod_rrdtool",
|
||||
# "mod_webdav",
|
||||
# "mod_accesslog"
|
||||
)
|
||||
# }}}
|
||||
|
||||
# {{{ includes
|
||||
include "mime-types.conf"
|
||||
# uncomment for cgi support
|
||||
# include "mod_cgi.conf"
|
||||
# uncomment for php/fastcgi support
|
||||
# include "mod_fastcgi.conf"
|
||||
# uncomment for php/fastcgi fpm support
|
||||
include "mod_fastcgi_fpm.conf"
|
||||
# }}}
|
||||
|
||||
# {{{ server settings
|
||||
server.username = "lighttpd"
|
||||
server.groupname = "www-data"
|
||||
|
||||
server.document-root = var.basedir
|
||||
server.pid-file = "/run/lighttpd.pid"
|
||||
|
||||
#server.errorlog = "/dev/pts/0"
|
||||
# log errors to syslog instead
|
||||
# server.errorlog-use-syslog = "enable"
|
||||
|
||||
server.indexfiles = ("index.php")
|
||||
|
||||
# server.tag = "lighttpd"
|
||||
|
||||
server.follow-symlink = "enable"
|
||||
|
||||
# ROMPR
|
||||
# Expire header for RompR albumart
|
||||
expire.url = ( "/albumart/" => "modification plus 1 seconds" )
|
||||
# This sets the 404 page globally for the server which is OK if you're only
|
||||
# running RompR but will affect other sites on your system.
|
||||
# If you have other sites on this system then you should maybe look at virtual hosts.
|
||||
# If you don't use the custom 404 page for RompR your album art manager will
|
||||
# not work correctly.
|
||||
server.error-handler-404 = "404.php"
|
||||
# ROMPR END
|
||||
|
||||
# event handler (defaults to "poll")
|
||||
# see performance.txt
|
||||
#
|
||||
# for >= linux-2.4
|
||||
# server.event-handler = "linux-rtsig"
|
||||
# for >= linux-2.6
|
||||
# server.event-handler = "linux-sysepoll"
|
||||
# for FreeBSD
|
||||
# server.event-handler = "freebsd-kqueue"
|
||||
|
||||
# chroot to directory (defaults to no chroot)
|
||||
# server.chroot = "/"
|
||||
|
||||
# bind to port (defaults to 80)
|
||||
# server.port = 81
|
||||
|
||||
# bind to name (defaults to all interfaces)
|
||||
# server.bind = "grisu.home.kneschke.de"
|
||||
|
||||
# error-handler for status 404
|
||||
# server.error-handler-404 = "/error-handler.html"
|
||||
# server.error-handler-404 = "/error-handler.php"
|
||||
|
||||
# Format: <errorfile-prefix><status-code>.html
|
||||
# -> ..../status-404.html for 'File not found'
|
||||
# server.errorfile-prefix = var.basedir + "/error/status-"
|
||||
|
||||
# FAM support for caching stat() calls
|
||||
# requires that lighttpd be built with USE=fam
|
||||
# server.stat-cache-engine = "fam"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_staticfile
|
||||
|
||||
# which extensions should not be handled via static-file transfer
|
||||
# (extensions that are usually handled by mod_cgi, mod_fastcgi, etc).
|
||||
static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi")
|
||||
# }}}
|
||||
|
||||
# {{{ mod_accesslog
|
||||
# accesslog.filename = "/dev/pts/0"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_dirlisting
|
||||
# enable directory listings
|
||||
# dir-listing.activate = "enable"
|
||||
#
|
||||
# don't list hidden files/directories
|
||||
# dir-listing.hide-dotfiles = "enable"
|
||||
#
|
||||
# use a different css for directory listings
|
||||
# dir-listing.external-css = "/path/to/dir-listing.css"
|
||||
#
|
||||
# list of regular expressions. files that match any of the
|
||||
# specified regular expressions will be excluded from directory
|
||||
# listings.
|
||||
# dir-listing.exclude = ("^\.", "~$")
|
||||
# }}}
|
||||
|
||||
# {{{ mod_access
|
||||
# see access.txt
|
||||
|
||||
url.access-deny = ("~", ".inc")
|
||||
# }}}
|
||||
|
||||
# {{{ mod_userdir
|
||||
# see userdir.txt
|
||||
#
|
||||
# userdir.path = "public_html"
|
||||
# userdir.exclude-user = ("root")
|
||||
# }}}
|
||||
|
||||
# {{{ mod_ssi
|
||||
# see ssi.txt
|
||||
#
|
||||
# ssi.extension = (".shtml")
|
||||
# }}}
|
||||
|
||||
# {{{ mod_ssl
|
||||
# see ssl.txt
|
||||
#
|
||||
# ssl.engine = "enable"
|
||||
# ssl.pemfile = "server.pem"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_status
|
||||
# see status.txt
|
||||
#
|
||||
# status.status-url = "/server-status"
|
||||
# status.config-url = "/server-config"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_simple_vhost
|
||||
# see simple-vhost.txt
|
||||
#
|
||||
# If you want name-based virtual hosting add the next three settings and load
|
||||
# mod_simple_vhost
|
||||
#
|
||||
# document-root =
|
||||
# virtual-server-root + virtual-server-default-host + virtual-server-docroot
|
||||
# or
|
||||
# virtual-server-root + http-host + virtual-server-docroot
|
||||
#
|
||||
# simple-vhost.server-root = "/home/weigon/wwwroot/servers/"
|
||||
# simple-vhost.default-host = "grisu.home.kneschke.de"
|
||||
# simple-vhost.document-root = "/pages/"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_compress
|
||||
# see compress.txt
|
||||
#
|
||||
compress.cache-dir = "/tmp"
|
||||
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
|
||||
|
||||
# }}}
|
||||
|
||||
# {{{ mod_proxy
|
||||
# see proxy.txt
|
||||
#
|
||||
# proxy.server = ( ".php" =>
|
||||
# ( "localhost" =>
|
||||
# (
|
||||
# "host" => "192.168.0.101",
|
||||
# "port" => 80
|
||||
# )
|
||||
# )
|
||||
# )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_auth
|
||||
# see authentication.txt
|
||||
#
|
||||
# auth.backend = "plain"
|
||||
# auth.backend.plain.userfile = "lighttpd.user"
|
||||
# auth.backend.plain.groupfile = "lighttpd.group"
|
||||
|
||||
# auth.backend.ldap.hostname = "localhost"
|
||||
# auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
|
||||
# auth.backend.ldap.filter = "(uid=$)"
|
||||
|
||||
# auth.require = ( "/server-status" =>
|
||||
# (
|
||||
# "method" => "digest",
|
||||
# "realm" => "download archiv",
|
||||
# "require" => "user=jan"
|
||||
# ),
|
||||
# "/server-info" =>
|
||||
# (
|
||||
# "method" => "digest",
|
||||
# "realm" => "download archiv",
|
||||
# "require" => "valid-user"
|
||||
# )
|
||||
# )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_rewrite
|
||||
# see rewrite.txt
|
||||
#
|
||||
# url.rewrite = (
|
||||
# "^/$" => "/server-status"
|
||||
# )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_redirect
|
||||
# see redirect.txt
|
||||
#
|
||||
# url.redirect = (
|
||||
# "^/wishlist/(.+)" => "http://www.123.org/$1"
|
||||
# )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_evhost
|
||||
# define a pattern for the host url finding
|
||||
# %% => % sign
|
||||
# %0 => domain name + tld
|
||||
# %1 => tld
|
||||
# %2 => domain name without tld
|
||||
# %3 => subdomain 1 name
|
||||
# %4 => subdomain 2 name
|
||||
#
|
||||
# evhost.path-pattern = "/home/storage/dev/www/%3/htdocs/"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_expire
|
||||
# expire.url = (
|
||||
# "/buggy/" => "access 2 hours",
|
||||
# "/asdhas/" => "access plus 1 seconds 2 minutes"
|
||||
# )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_rrdtool
|
||||
# see rrdtool.txt
|
||||
#
|
||||
# rrdtool.binary = "/usr/bin/rrdtool"
|
||||
# rrdtool.db-name = var.statedir + "/lighttpd.rrd"
|
||||
# }}}
|
||||
|
||||
# {{{ mod_setenv
|
||||
# see setenv.txt
|
||||
#
|
||||
# setenv.add-request-header = ( "TRAV_ENV" => "mysql://user@host/db" )
|
||||
# setenv.add-response-header = ( "X-Secret-Message" => "42" )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_trigger_b4_dl
|
||||
# see trigger_b4_dl.txt
|
||||
#
|
||||
# trigger-before-download.gdbm-filename = "/home/weigon/testbase/trigger.db"
|
||||
# trigger-before-download.memcache-hosts = ( "127.0.0.1:11211" )
|
||||
# trigger-before-download.trigger-url = "^/trigger/"
|
||||
# trigger-before-download.download-url = "^/download/"
|
||||
# trigger-before-download.deny-url = "http://127.0.0.1/index.html"
|
||||
# trigger-before-download.trigger-timeout = 10
|
||||
# }}}
|
||||
|
||||
# {{{ mod_cml
|
||||
# see cml.txt
|
||||
#
|
||||
# don't forget to add index.cml to server.indexfiles
|
||||
# cml.extension = ".cml"
|
||||
# cml.memcache-hosts = ( "127.0.0.1:11211" )
|
||||
# }}}
|
||||
|
||||
# {{{ mod_webdav
|
||||
# see webdav.txt
|
||||
#
|
||||
# $HTTP["url"] =~ "^/dav($|/)" {
|
||||
# webdav.activate = "enable"
|
||||
# webdav.is-readonly = "enable"
|
||||
# }
|
||||
# }}}
|
||||
|
||||
# {{{ extra rules
|
||||
#
|
||||
# set Content-Encoding and reset Content-Type for browsers that
|
||||
# support decompressing on-thy-fly (requires mod_setenv)
|
||||
# $HTTP["url"] =~ "\.gz$" {
|
||||
# setenv.add-response-header = ("Content-Encoding" => "x-gzip")
|
||||
# mimetype.assign = (".gz" => "text/plain")
|
||||
# }
|
||||
|
||||
# $HTTP["url"] =~ "\.bz2$" {
|
||||
# setenv.add-response-header = ("Content-Encoding" => "x-bzip2")
|
||||
# mimetype.assign = (".bz2" => "text/plain")
|
||||
# }
|
||||
#
|
||||
# }}}
|
||||
|
||||
# {{{ debug
|
||||
# debug.log-request-header = "enable"
|
||||
# debug.log-response-header = "enable"
|
||||
# debug.log-request-handling = "enable"
|
||||
# debug.log-file-not-found = "enable"
|
||||
# }}}
|
||||
|
||||
# vim: set ft=conf foldmethod=marker et :
|
||||
server.network-backend = "writev"
|
||||
79
apps/web/rompr/etc_lighthttpd/mime-types.conf
Normal file
79
apps/web/rompr/etc_lighthttpd/mime-types.conf
Normal file
@@ -0,0 +1,79 @@
|
||||
###############################################################################
|
||||
# Default mime-types.conf for Gentoo.
|
||||
# include'd from lighttpd.conf.
|
||||
# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/mime-types.conf,v 1.4 2010/03/14 21:45:18 bangert Exp $
|
||||
###############################################################################
|
||||
|
||||
# {{{ mime types
|
||||
mimetype.assign = (
|
||||
".svg" => "image/svg+xml",
|
||||
".svgz" => "image/svg+xml",
|
||||
".pdf" => "application/pdf",
|
||||
".sig" => "application/pgp-signature",
|
||||
".spl" => "application/futuresplash",
|
||||
".class" => "application/octet-stream",
|
||||
".ps" => "application/postscript",
|
||||
".torrent" => "application/x-bittorrent",
|
||||
".dvi" => "application/x-dvi",
|
||||
".gz" => "application/x-gzip",
|
||||
".pac" => "application/x-ns-proxy-autoconfig",
|
||||
".swf" => "application/x-shockwave-flash",
|
||||
".tar.gz" => "application/x-tgz",
|
||||
".tgz" => "application/x-tgz",
|
||||
".tar" => "application/x-tar",
|
||||
".zip" => "application/zip",
|
||||
".dmg" => "application/x-apple-diskimage",
|
||||
".mp3" => "audio/mpeg",
|
||||
".m3u" => "audio/x-mpegurl",
|
||||
".wma" => "audio/x-ms-wma",
|
||||
".wax" => "audio/x-ms-wax",
|
||||
".ogg" => "application/ogg",
|
||||
".wav" => "audio/x-wav",
|
||||
".gif" => "image/gif",
|
||||
".jpg" => "image/jpeg",
|
||||
".jpeg" => "image/jpeg",
|
||||
".png" => "image/png",
|
||||
".xbm" => "image/x-xbitmap",
|
||||
".xpm" => "image/x-xpixmap",
|
||||
".xwd" => "image/x-xwindowdump",
|
||||
".css" => "text/css",
|
||||
".html" => "text/html",
|
||||
".htm" => "text/html",
|
||||
".js" => "text/javascript",
|
||||
".asc" => "text/plain",
|
||||
".c" => "text/plain",
|
||||
".h" => "text/plain",
|
||||
".cc" => "text/plain",
|
||||
".cpp" => "text/plain",
|
||||
".hh" => "text/plain",
|
||||
".hpp" => "text/plain",
|
||||
".conf" => "text/plain",
|
||||
".log" => "text/plain",
|
||||
".text" => "text/plain",
|
||||
".txt" => "text/plain",
|
||||
".diff" => "text/plain",
|
||||
".patch" => "text/plain",
|
||||
".ebuild" => "text/plain",
|
||||
".eclass" => "text/plain",
|
||||
".rtf" => "application/rtf",
|
||||
".bmp" => "image/bmp",
|
||||
".tif" => "image/tiff",
|
||||
".tiff" => "image/tiff",
|
||||
".ico" => "image/x-icon",
|
||||
".dtd" => "text/xml",
|
||||
".xml" => "text/xml",
|
||||
".mpeg" => "video/mpeg",
|
||||
".mpg" => "video/mpeg",
|
||||
".mov" => "video/quicktime",
|
||||
".qt" => "video/quicktime",
|
||||
".avi" => "video/x-msvideo",
|
||||
".asf" => "video/x-ms-asf",
|
||||
".asx" => "video/x-ms-asf",
|
||||
".wmv" => "video/x-ms-wmv",
|
||||
".bz2" => "application/x-bzip",
|
||||
".tbz" => "application/x-bzip-compressed-tar",
|
||||
".tar.bz2" => "application/x-bzip-compressed-tar"
|
||||
)
|
||||
# }}}
|
||||
|
||||
# vim: set ft=conf foldmethod=marker et :
|
||||
33
apps/web/rompr/etc_lighthttpd/mod_cgi.conf
Normal file
33
apps/web/rompr/etc_lighthttpd/mod_cgi.conf
Normal file
@@ -0,0 +1,33 @@
|
||||
###############################################################################
|
||||
# mod_cgi.conf
|
||||
# include'd by lighttpd.conf.
|
||||
# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/mod_cgi.conf,v 1.1 2005/08/27 12:36:13 ka0ttic Exp $
|
||||
###############################################################################
|
||||
|
||||
#
|
||||
# see cgi.txt for more information on using mod_cgi
|
||||
#
|
||||
|
||||
server.modules += ("mod_cgi")
|
||||
|
||||
# NOTE: this requires mod_alias
|
||||
alias.url = (
|
||||
"/cgi-bin/" => var.basedir + "/cgi-bin/"
|
||||
)
|
||||
|
||||
#
|
||||
# Note that you'll also want to enable the
|
||||
# cgi-bin alias via mod_alias (above).
|
||||
#
|
||||
|
||||
$HTTP["url"] =~ "^/cgi-bin/" {
|
||||
# disable directory listings
|
||||
dir-listing.activate = "disable"
|
||||
# only allow cgi's in this directory
|
||||
cgi.assign = (
|
||||
".pl" => "/usr/bin/perl",
|
||||
".cgi" => "/usr/bin/perl"
|
||||
)
|
||||
}
|
||||
|
||||
# vim: set ft=conf foldmethod=marker et :
|
||||
17
apps/web/rompr/etc_lighthttpd/mod_fastcgi.conf
Normal file
17
apps/web/rompr/etc_lighthttpd/mod_fastcgi.conf
Normal file
@@ -0,0 +1,17 @@
|
||||
###############################################################################
|
||||
# mod_fastcgi.conf
|
||||
# include'd by lighttpd.conf.
|
||||
# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/mod_fastcgi.conf-1.4.13-r2,v 1.1 2007/04/01 23:22:00 robbat2 Exp $
|
||||
###############################################################################
|
||||
|
||||
server.modules += ("mod_fastcgi")
|
||||
fastcgi.server = ( ".php" =>
|
||||
( "localhost" =>
|
||||
(
|
||||
"socket" => "/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket",
|
||||
"bin-path" => "/usr/bin/php-cgi"
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
# vim: set ft=conf foldmethod=marker et :
|
||||
16
apps/web/rompr/etc_lighthttpd/mod_fastcgi_fpm.conf
Normal file
16
apps/web/rompr/etc_lighthttpd/mod_fastcgi_fpm.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
###############################################################################
|
||||
# mod_fastcgi_fpm.conf
|
||||
# include'd by lighttpd.conf.
|
||||
###############################################################################
|
||||
|
||||
server.modules += ("mod_fastcgi")
|
||||
fastcgi.server = ( ".php" =>
|
||||
(
|
||||
(
|
||||
"host" => "127.0.0.1",
|
||||
"port" => "9000"
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
# vim: set ft=conf foldmethod=marker et :
|
||||
15
apps/web/rompr/etc_lighthttpd/rompr.conf
Normal file
15
apps/web/rompr/etc_lighthttpd/rompr.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
# Expire header for RompR albumart
|
||||
expire.url = ( "/albumart/" => "modification plus 1 seconds" )
|
||||
# This sets the 404 page globally for the server which is OK if you're only
|
||||
# running RompR but will affect other sites on your system.
|
||||
# If you have other sites on this system then you should maybe look at virtual hosts.
|
||||
# If you don't use the custom 404 page for RompR your album art manager will
|
||||
# not work correctly.
|
||||
server.error-handler-404 = "404.php"
|
||||
|
||||
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
|
||||
url.access-deny = ( "~", ".inc" )
|
||||
#static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
|
||||
|
||||
compress.cache-dir = "/var/cache/lighttpd/compress/"
|
||||
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
|
||||
Reference in New Issue
Block a user