Commit d14206d4cd837dabd9e21953fe8f64150f7eb5f1

Authored by caikeal
1 parent 3df99036

init

Dockerfile 0 → 100644
  1 +FROM takatost/nginx-php-fpm:latest
  2 +
  3 +MAINTAINER JohnWang <wangjiajun@vchangyi.com>
  4 +
  5 +ENV FILEBEAT_NAME service-finance
  6 +
  7 +COPY configs/nginx/default.conf /etc/nginx/sites-available/default.conf
  8 +
  9 +COPY src/ /data/www/
  10 +
  11 +RUN cd /data/www && \
  12 + composer update --no-dev --no-progress --profile --prefer-dist && \
  13 + composer dump-autoload --optimize && \
  14 + chown -R nginx:nginx /data/www
0 15 \ No newline at end of file
... ...
configs/nginx/default.conf 0 → 100644
  1 +server {
  2 + listen 80; ## listen for ipv4; this line is default and implied
  3 + listen [::]:80 default ipv6only=on; ## listen for ipv6
  4 +
  5 + root /data/www/public;
  6 + index index.php index.html index.htm;
  7 +
  8 + # Make site accessible from http://localhost/
  9 + server_name _;
  10 +
  11 + # Disable sendfile as per https://docs.vagrantup.com/v2/synced-folders/virtualbox.html
  12 + sendfile off;
  13 +
  14 + # Add stdout logging
  15 + error_log /dev/stdout info;
  16 + access_log /dev/stdout;
  17 +
  18 + location / {
  19 + try_files $uri $uri/ /index.php?$args;
  20 + }
  21 +
  22 + error_page 500 502 503 504 /50x.html;
  23 + location = /50x.html {
  24 + root html;
  25 + }
  26 +
  27 + # pass the PHP scripts to FastCGI server listening on socket
  28 + #
  29 + location ~ \.php$ {
  30 + try_files $uri =404;
  31 + fastcgi_split_path_info ^(.+\.php)(/.+)$;
  32 + fastcgi_pass unix:/var/run/php-fpm.sock;
  33 + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  34 + fastcgi_param SCRIPT_NAME $fastcgi_script_name;
  35 + fastcgi_index index.php;
  36 + include fastcgi_params;
  37 + }
  38 +
  39 + location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
  40 + expires 5d;
  41 + }
  42 +
  43 + # deny access to . files, for security
  44 + #
  45 + location ~ /\. {
  46 + log_not_found off;
  47 + deny all;
  48 + }
  49 +
  50 + location ^~ /.well-known {
  51 + allow all;
  52 + auth_basic off;
  53 + }
  54 +}
0 55 \ No newline at end of file
... ...