Nginx удалён за своей ненадобностью

This commit is contained in:
ErickSkrauch 2016-07-07 00:46:32 +03:00
parent 2b8266b224
commit e3f744ed10
4 changed files with 0 additions and 109 deletions

View File

@ -4,15 +4,8 @@ services:
build: .
links:
- redis
web:
build: ./docker/nginx
ports:
- "80:80"
links:
- app
volumes_from:
- app
redis:
image: redis:3.0

View File

@ -1,8 +0,0 @@
FROM nginx:1.11
COPY nginx.conf /etc/nginx/nginx.conf
COPY skinsystem.ely.by.conf /etc/nginx/conf.d/default.conf
RUN mkdir -p /data/cache \
/data/logs \
&& chown nginx:nginx -R /data

View File

@ -1,31 +0,0 @@
user nginx;
worker_processes auto;
events {
worker_connections 4048;
multi_accept on;
use epoll;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 15;
types_hash_max_size 2048;
server_tokens off;
access_log /data/logs/access.log combined buffer=32k;
error_log /data/logs/error.log crit;
gzip off;
client_max_body_size 1M;
proxy_cache_path /data/cache levels=1:2 keys_zone=cache:30m max_size=1G;
include /etc/nginx/conf.d/*.conf;
}

View File

@ -1,63 +0,0 @@
server {
listen 80;
charset utf-8;
set $root_path '/go/src/app';
root $root_path;
proxy_cache_use_stale error timeout invalid_header http_502;
proxy_cache_min_uses 1;
location / {
proxy_pass http://app;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache cache;
proxy_cache_valid 30m;
}
location /minecraft.php {
if ($arg_name = "") {
return 400;
}
if ($arg_type = "cloack") {
rewrite .* http://skins.minecraft.net/MinecraftCloaks/$arg_name.png? permanent;
break;
}
if ($arg_type = "skin") {
rewrite .* /skins/$arg_name last;
break;
}
return 404;
}
location /cloaks/ {
try_files $uri $uri.png @cloaks;
}
location @cloaks {
rewrite ^/cloaks/(.+?)(\.[^.]*$|$)$ http://skins.minecraft.net/MinecraftCloaks/$1.png? permanent;
}
location ~* ^/skins/$ {
if ($arg_name = "") {
return 400;
}
rewrite .* /skins/$arg_name last;
}
location ~* ^/cloaks/$ {
if ($arg_name = "") {
return 400;
}
rewrite .* /cloaks/$arg_name last;
}
}