Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2b254dba64 | ||
|
87cb0e3615 | ||
|
7db5a9bb6b | ||
|
1390b807c2 | ||
|
116632ab56 | ||
|
9218b58a71 | ||
|
39be522172 | ||
|
d357e59d0e | ||
|
1a3edf4111 | ||
|
c137014985 | ||
|
7350ee42db | ||
|
1af228e0d9 | ||
|
03a95021e5 |
@ -1,2 +1 @@
|
|||||||
.git/
|
|
||||||
image*bz2
|
image*bz2
|
||||||
|
45
.gitlab-ci.yml
Normal file
45
.gitlab-ci.yml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
image: docker:latest
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
- build
|
||||||
|
|
||||||
|
variables:
|
||||||
|
VERSION: php56
|
||||||
|
DOCKER_IMAGE: leenooks/lamps
|
||||||
|
DOCKER_REGISTRY: registry.leenooks.net
|
||||||
|
DOCKER_HOST: tcp://${DOCKER_REGISTRY}-leenooks-ci-docker:2375
|
||||||
|
|
||||||
|
services:
|
||||||
|
- ${DOCKER_REGISTRY}/leenooks/ci-docker:dind
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- docker info
|
||||||
|
- docker version
|
||||||
|
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN ${DOCKER_REGISTRY}
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- cat /etc/hosts
|
||||||
|
- env|sort
|
||||||
|
- docker build -t ${DOCKER_IMAGE}:${VERSION} .
|
||||||
|
- docker images
|
||||||
|
only:
|
||||||
|
- debug
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- chmod 600 .my.cnf sshd_config
|
||||||
|
- chmod 500 init
|
||||||
|
- chmod 644 sshd
|
||||||
|
- docker build -t ${DOCKER_IMAGE}:${VERSION} .
|
||||||
|
- docker tag ${DOCKER_IMAGE}:${VERSION} ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:${VERSION}
|
||||||
|
- docker push ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:${VERSION}
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
only:
|
||||||
|
- php55
|
||||||
|
- php56
|
||||||
|
- php70
|
@ -1,5 +0,0 @@
|
|||||||
<Directory /var/www/sites>
|
|
||||||
AllowOverride AuthConfig FileInfo Indexes Limit Options
|
|
||||||
Options FollowSymLinks
|
|
||||||
Require all denied
|
|
||||||
</Directory>
|
|
33
Dockerfile
33
Dockerfile
@ -1,14 +1,12 @@
|
|||||||
# NAME leenooks/lamps
|
# NAME leenooks/lamps
|
||||||
# VERSION php54
|
# VERSION php56
|
||||||
|
|
||||||
FROM registry.leenooks.net/leenooks/base:7
|
FROM registry.leenooks.net/leenooks/base:7.TE
|
||||||
|
|
||||||
RUN yum -y install epel-release && yum clean all
|
RUN yum -y install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm && yum clean all && rm -rf /var/tmp/*
|
||||||
|
|
||||||
RUN yum -y install tsmpipe && yum clean all
|
|
||||||
|
|
||||||
# EPEL & Leenooks packages
|
# EPEL & Leenooks packages
|
||||||
RUN yum -y install \
|
RUN yum -y install --enabler remi-php56 \
|
||||||
httpd \
|
httpd \
|
||||||
mariadb-server \
|
mariadb-server \
|
||||||
php \
|
php \
|
||||||
@ -19,6 +17,7 @@ RUN yum -y install \
|
|||||||
php-pdo \
|
php-pdo \
|
||||||
php-xml \
|
php-xml \
|
||||||
php-composer-installers.noarch \
|
php-composer-installers.noarch \
|
||||||
|
php-opcache \
|
||||||
m4 \
|
m4 \
|
||||||
opendkim \
|
opendkim \
|
||||||
sendmail \
|
sendmail \
|
||||||
@ -32,20 +31,22 @@ RUN yum -y install \
|
|||||||
&& yum clean all
|
&& yum clean all
|
||||||
|
|
||||||
COPY .my.cnf /root/
|
COPY .my.cnf /root/
|
||||||
COPY 10-default.conf /etc/httpd/conf.d/
|
COPY sshd /etc/sysconfig/sshd
|
||||||
|
COPY sshd_config /etc/ssh/
|
||||||
RUN ln -f /etc/.ln/httpd/conf.d/awstats.conf /etc/httpd/conf.d/awstats.conf && ln -f /etc/.ln/opendkim.conf /etc/opendkim.conf
|
RUN ln -f /etc/.ln/httpd/conf.d/awstats.conf /etc/httpd/conf.d/awstats.conf && ln -f /etc/.ln/opendkim.conf /etc/opendkim.conf
|
||||||
|
|
||||||
RUN useradd -c "Hosting Admin User" -m lamp -G apache
|
RUN useradd -c "Hosting Admin User" -G apache -d /etc/leenooks/user -M lamp
|
||||||
|
RUN useradd -rc "Composer" -m composer -s /sbin/nologin && su composer -s /bin/bash -lc "composer global require laravel/installer && composer require --dev --no-update xethron/migrations-generator:dev-l5 && composer require --dev --no-update way/generators:dev-feature/laravel-five-stable && composer config repositories.repo-name git git@github.com:jamisonvalenta/Laravel-4-Generators.git"
|
||||||
|
|
||||||
VOLUME [ "/etc/ssh" ]
|
EXPOSE 22 80
|
||||||
EXPOSE 80 443
|
COPY init /sbin/
|
||||||
|
|
||||||
|
# Starting
|
||||||
|
ENTRYPOINT [ "/sbin/init" ]
|
||||||
|
|
||||||
LABEL cron.hourly root:/usr/sbin/awstats.sh
|
LABEL cron.hourly root:/usr/sbin/awstats.sh
|
||||||
LABEL cron.daily root:/usr/bin/tdp.mysql.sh -s information_schema:performance_schema
|
LABEL cron.daily root:/usr/bin/tdp.mysql.sh -s information_schema:performance_schema
|
||||||
|
|
||||||
# Starting
|
#VOLUME [ "/etc/leenooks","/var/lib/mysql","/var/www/html" ]
|
||||||
COPY init /sbin/
|
VOLUME [ "/etc/leenooks" ]
|
||||||
ENTRYPOINT [ "/sbin/init" ]
|
RUN rmdir /var/lib/mysql; ln -sf /etc/leenooks/database /var/lib/mysql; mv /var/www/html /var/www/html.old; ln -sf /etc/leenooks/html /var/www/html; ln -sf /etc/leenooks/tsm/dsm.sys /opt/tivoli/tsm/client/api/bin64/dsm.sys; ln -sf /etc/leenooks/tsm/dsm.opt /opt/tivoli/tsm/client/api/bin64/dsm.opt;
|
||||||
CMD [ "start" ]
|
|
||||||
|
|
||||||
RUN useradd -rc "Composer" -m composer -s /sbin/nologin && su composer -s /bin/bash -lc "composer global require laravel/installer && composer require --dev --no-update xethron/migrations-generator:dev-l5 && composer require --dev --no-update way/generators:dev-feature/laravel-five-stable && composer config repositories.repo-name git git@github.com:jamisonvalenta/Laravel-4-Generators.git"
|
|
||||||
|
16
init
16
init
@ -16,9 +16,16 @@ function stop {
|
|||||||
[ "$NO_HTTP" != "TRUE" ] && rm -f /var/run/httpd/authdigest_shm.$(cat /var/run/httpd/httpd.pid) && kill $(cat /var/run/httpd/httpd.pid)
|
[ "$NO_HTTP" != "TRUE" ] && rm -f /var/run/httpd/authdigest_shm.$(cat /var/run/httpd/httpd.pid) && kill $(cat /var/run/httpd/httpd.pid)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function firststart {
|
||||||
|
if [ -x /usr/local/sbin/firststart.sh ]; then
|
||||||
|
/usr/local/sbin/firststart.sh
|
||||||
|
[ $? -eq 0 ] && rm /usr/local/sbin/firststart.sh
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
trap 'stop' SIGTERM
|
trap 'stop' SIGTERM
|
||||||
|
|
||||||
if [ "$1" == "start" ]; then
|
if [ -z "$1" ]; then
|
||||||
if [ "$NO_MAIL" != "TRUE" ]; then
|
if [ "$NO_MAIL" != "TRUE" ]; then
|
||||||
if [ -z `hostname --domain` ]; then
|
if [ -z `hostname --domain` ]; then
|
||||||
echo "You must start this container with --hostname= specifying a domain name"
|
echo "You must start this container with --hostname= specifying a domain name"
|
||||||
@ -36,6 +43,7 @@ if [ "$1" == "start" ]; then
|
|||||||
|
|
||||||
if [ "$NO_SSH" != "TRUE" ]; then
|
if [ "$NO_SSH" != "TRUE" ]; then
|
||||||
echo "Starting SSHD..."
|
echo "Starting SSHD..."
|
||||||
|
[ ! -d /etc/leenooks/ssh ] && mkdir /etc/leenooks/ssh && chmod 750 /etc/leenoks/ssh
|
||||||
getent passwd lamp || useradd -c "Hosting Admin User" -m lamp
|
getent passwd lamp || useradd -c "Hosting Admin User" -m lamp
|
||||||
[ -x /usr/sbin/sshd-keygen ] && /usr/sbin/sshd-keygen
|
[ -x /usr/sbin/sshd-keygen ] && /usr/sbin/sshd-keygen
|
||||||
[ -x /usr/sbin/sshd ] && /usr/sbin/sshd -D &
|
[ -x /usr/sbin/sshd ] && /usr/sbin/sshd -D &
|
||||||
@ -54,17 +62,19 @@ if [ "$1" == "start" ]; then
|
|||||||
if [ "$NO_HTTP" != "TRUE" ]; then
|
if [ "$NO_HTTP" != "TRUE" ]; then
|
||||||
if [ -d /etc/awstats ]; then
|
if [ -d /etc/awstats ]; then
|
||||||
find /etc/awstats/ -type l | xargs -n 5 rm -f
|
find /etc/awstats/ -type l | xargs -n 5 rm -f
|
||||||
[ -e /var/www/sites/*/awstats/awstats*conf ] && find /var/www/sites/*/awstats/awstats*conf -type f -exec ln -sf {} /etc/awstats/ \;
|
[ -e /etc/leenooks/awstats/awstats*conf ] && find /etc/leenooks/awstats/awstats*conf -type f -exec ln -sf {} /etc/awstats/ \;
|
||||||
fi
|
fi
|
||||||
echo "Starting HTTP..."
|
echo "Starting HTTP..."
|
||||||
find /etc/httpd/conf.d/ -type l | xargs -n 5 rm -f
|
find /etc/httpd/conf.d/ -type l | xargs -n 5 rm -f
|
||||||
find /etc/httpd/sites.d -type f -exec ln -sf {} /etc/httpd/conf.d/ \;
|
[ -d /etc/leenooks/httpd ] && find /etc/leenooks/httpd -type f -exec ln -sf {} /etc/httpd/conf.d/ \;
|
||||||
[ -x /usr/sbin/httpd ] && /usr/sbin/httpd -DFOREGROUND &
|
[ -x /usr/sbin/httpd ] && /usr/sbin/httpd -DFOREGROUND &
|
||||||
else
|
else
|
||||||
echo "! NOT starting HTTP"
|
echo "! NOT starting HTTP"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
firststart
|
||||||
wait
|
wait
|
||||||
|
|
||||||
else
|
else
|
||||||
exec $@
|
exec $@
|
||||||
fi
|
fi
|
||||||
|
21
sshd
Normal file
21
sshd
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Configuration file for the sshd service.
|
||||||
|
|
||||||
|
# The server keys are automatically generated if they are missing.
|
||||||
|
# To change the automatic creation uncomment and change the appropriate
|
||||||
|
# line. Accepted key types are: DSA RSA ECDSA ED25519.
|
||||||
|
# The default is "RSA ECDSA ED25519"
|
||||||
|
|
||||||
|
# AUTOCREATE_SERVER_KEYS=""
|
||||||
|
# AUTOCREATE_SERVER_KEYS="RSA ECDSA ED25519"
|
||||||
|
|
||||||
|
# Do not change this option unless you have hardware random
|
||||||
|
# generator and you REALLY know what you are doing
|
||||||
|
|
||||||
|
SSH_USE_STRONG_RNG=0
|
||||||
|
# SSH_USE_STRONG_RNG=1
|
||||||
|
|
||||||
|
# Override Defaults
|
||||||
|
RSA_KEY=/etc/leenooks/ssh/ssh_host_rsa_key
|
||||||
|
ECDSA_KEY=/etc/leenooks/ssh/ssh_host_ecdsa_key
|
||||||
|
|
||||||
|
AUTOCREATE_SERVER_KEYS="RSA ECDSA"
|
153
sshd_config
Normal file
153
sshd_config
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
# $OpenBSD: sshd_config,v 1.93 2014/01/10 05:59:19 djm Exp $
|
||||||
|
|
||||||
|
# This is the sshd server system-wide configuration file. See
|
||||||
|
# sshd_config(5) for more information.
|
||||||
|
|
||||||
|
# This sshd was compiled with PATH=/usr/local/bin:/usr/bin
|
||||||
|
|
||||||
|
# The strategy used for options in the default sshd_config shipped with
|
||||||
|
# OpenSSH is to specify options with their default value where
|
||||||
|
# possible, but leave them commented. Uncommented options override the
|
||||||
|
# default value.
|
||||||
|
|
||||||
|
# If you want to change the port on a SELinux system, you have to tell
|
||||||
|
# SELinux about this change.
|
||||||
|
# semanage port -a -t ssh_port_t -p tcp #PORTNUMBER
|
||||||
|
#
|
||||||
|
#Port 22
|
||||||
|
#AddressFamily any
|
||||||
|
#ListenAddress 0.0.0.0
|
||||||
|
#ListenAddress ::
|
||||||
|
|
||||||
|
# The default requires explicit activation of protocol 1
|
||||||
|
#Protocol 2
|
||||||
|
|
||||||
|
# HostKey for protocol version 1
|
||||||
|
#HostKey /etc/ssh/ssh_host_key
|
||||||
|
# HostKeys for protocol version 2
|
||||||
|
HostKey /etc/leenooks/ssh/ssh_host_rsa_key
|
||||||
|
#HostKey /etc/ssh/ssh_host_dsa_key
|
||||||
|
HostKey /etc/leenooks/ssh/ssh_host_ecdsa_key
|
||||||
|
#HostKey /etc/leenooks/ssh/ssh_host_ed25519_key
|
||||||
|
|
||||||
|
# Lifetime and size of ephemeral version 1 server key
|
||||||
|
#KeyRegenerationInterval 1h
|
||||||
|
#ServerKeyBits 1024
|
||||||
|
|
||||||
|
# Ciphers and keying
|
||||||
|
#RekeyLimit default none
|
||||||
|
|
||||||
|
# Logging
|
||||||
|
# obsoletes QuietMode and FascistLogging
|
||||||
|
#SyslogFacility AUTH
|
||||||
|
SyslogFacility AUTHPRIV
|
||||||
|
#LogLevel INFO
|
||||||
|
|
||||||
|
# Authentication:
|
||||||
|
|
||||||
|
#LoginGraceTime 2m
|
||||||
|
#PermitRootLogin yes
|
||||||
|
#StrictModes yes
|
||||||
|
#MaxAuthTries 6
|
||||||
|
#MaxSessions 10
|
||||||
|
|
||||||
|
#RSAAuthentication yes
|
||||||
|
#PubkeyAuthentication yes
|
||||||
|
|
||||||
|
# The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
|
||||||
|
# but this is overridden so installations will only check .ssh/authorized_keys
|
||||||
|
AuthorizedKeysFile .ssh/authorized_keys
|
||||||
|
|
||||||
|
#AuthorizedPrincipalsFile none
|
||||||
|
|
||||||
|
#AuthorizedKeysCommand none
|
||||||
|
#AuthorizedKeysCommandUser nobody
|
||||||
|
|
||||||
|
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
|
||||||
|
#RhostsRSAAuthentication no
|
||||||
|
# similar for protocol version 2
|
||||||
|
#HostbasedAuthentication no
|
||||||
|
# Change to yes if you don't trust ~/.ssh/known_hosts for
|
||||||
|
# RhostsRSAAuthentication and HostbasedAuthentication
|
||||||
|
#IgnoreUserKnownHosts no
|
||||||
|
# Don't read the user's ~/.rhosts and ~/.shosts files
|
||||||
|
#IgnoreRhosts yes
|
||||||
|
|
||||||
|
# To disable tunneled clear text passwords, change to no here!
|
||||||
|
#PasswordAuthentication yes
|
||||||
|
#PermitEmptyPasswords no
|
||||||
|
PasswordAuthentication yes
|
||||||
|
|
||||||
|
# Change to no to disable s/key passwords
|
||||||
|
#ChallengeResponseAuthentication yes
|
||||||
|
ChallengeResponseAuthentication no
|
||||||
|
|
||||||
|
# Kerberos options
|
||||||
|
#KerberosAuthentication no
|
||||||
|
#KerberosOrLocalPasswd yes
|
||||||
|
#KerberosTicketCleanup yes
|
||||||
|
#KerberosGetAFSToken no
|
||||||
|
#KerberosUseKuserok yes
|
||||||
|
|
||||||
|
# GSSAPI options
|
||||||
|
GSSAPIAuthentication yes
|
||||||
|
GSSAPICleanupCredentials no
|
||||||
|
#GSSAPIStrictAcceptorCheck yes
|
||||||
|
#GSSAPIKeyExchange no
|
||||||
|
#GSSAPIEnablek5users no
|
||||||
|
|
||||||
|
# Set this to 'yes' to enable PAM authentication, account processing,
|
||||||
|
# and session processing. If this is enabled, PAM authentication will
|
||||||
|
# be allowed through the ChallengeResponseAuthentication and
|
||||||
|
# PasswordAuthentication. Depending on your PAM configuration,
|
||||||
|
# PAM authentication via ChallengeResponseAuthentication may bypass
|
||||||
|
# the setting of "PermitRootLogin without-password".
|
||||||
|
# If you just want the PAM account and session checks to run without
|
||||||
|
# PAM authentication, then enable this but set PasswordAuthentication
|
||||||
|
# and ChallengeResponseAuthentication to 'no'.
|
||||||
|
# WARNING: 'UsePAM no' is not supported in Red Hat Enterprise Linux and may cause several
|
||||||
|
# problems.
|
||||||
|
UsePAM yes
|
||||||
|
|
||||||
|
#AllowAgentForwarding yes
|
||||||
|
#AllowTcpForwarding yes
|
||||||
|
#GatewayPorts no
|
||||||
|
X11Forwarding yes
|
||||||
|
#X11DisplayOffset 10
|
||||||
|
#X11UseLocalhost yes
|
||||||
|
#PermitTTY yes
|
||||||
|
#PrintMotd yes
|
||||||
|
#PrintLastLog yes
|
||||||
|
#TCPKeepAlive yes
|
||||||
|
#UseLogin no
|
||||||
|
UsePrivilegeSeparation sandbox # Default for new installations.
|
||||||
|
#PermitUserEnvironment no
|
||||||
|
#Compression delayed
|
||||||
|
#ClientAliveInterval 0
|
||||||
|
#ClientAliveCountMax 3
|
||||||
|
#ShowPatchLevel no
|
||||||
|
#UseDNS yes
|
||||||
|
#PidFile /var/run/sshd.pid
|
||||||
|
#MaxStartups 10:30:100
|
||||||
|
#PermitTunnel no
|
||||||
|
#ChrootDirectory none
|
||||||
|
#VersionAddendum none
|
||||||
|
|
||||||
|
# no default banner path
|
||||||
|
#Banner none
|
||||||
|
|
||||||
|
# Accept locale-related environment variables
|
||||||
|
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
|
||||||
|
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
|
||||||
|
AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
|
||||||
|
AcceptEnv XMODIFIERS
|
||||||
|
|
||||||
|
# override default of no subsystems
|
||||||
|
Subsystem sftp /usr/libexec/openssh/sftp-server
|
||||||
|
|
||||||
|
# Example of overriding settings on a per-user basis
|
||||||
|
#Match User anoncvs
|
||||||
|
# X11Forwarding no
|
||||||
|
# AllowTcpForwarding no
|
||||||
|
# PermitTTY no
|
||||||
|
# ForceCommand cvs server
|
Loading…
Reference in New Issue
Block a user