2016-08-23 03:02:12 +05:30
|
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
|
|
|
|
|
set $root_path '/var/www/html';
|
|
|
|
|
set $api_path '${root_path}/api/web';
|
|
|
|
|
set $frontend_path '${root_path}/frontend/dist';
|
|
|
|
|
|
|
|
|
|
root $root_path;
|
|
|
|
|
charset utf-8;
|
|
|
|
|
client_max_body_size 2M;
|
|
|
|
|
etag on;
|
|
|
|
|
|
|
|
|
|
set $request_url $request_uri;
|
2016-09-07 20:26:30 +05:30
|
|
|
|
set $host_with_uri '${host}${request_uri}';
|
|
|
|
|
|
|
|
|
|
if ($host_with_uri ~* '^${AUTHSERVER_HOST}/auth') {
|
2016-08-23 03:02:12 +05:30
|
|
|
|
set $request_url '/api/authserver${request_uri}';
|
2016-09-07 20:26:30 +05:30
|
|
|
|
rewrite ^/auth /api/authserver$uri last;
|
2016-08-23 03:02:12 +05:30
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 20:26:30 +05:30
|
|
|
|
if ($host_with_uri ~* '^${AUTHSERVER_HOST}/session') {
|
|
|
|
|
set $request_url '/api/minecraft${request_uri}';
|
|
|
|
|
rewrite ^/session /api/minecraft$uri last;
|
|
|
|
|
}
|
2016-08-23 03:02:12 +05:30
|
|
|
|
|
2016-09-07 20:26:30 +05:30
|
|
|
|
location / {
|
2016-08-23 03:02:12 +05:30
|
|
|
|
alias $frontend_path;
|
|
|
|
|
index index.html;
|
|
|
|
|
try_files $uri /index.html =404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /api {
|
|
|
|
|
try_files $uri $uri /api/web/index.php?$is_args$args;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location ~* \.php$ {
|
2016-09-16 03:58:28 +05:30
|
|
|
|
fastcgi_pass php:9000;
|
2016-08-23 03:02:12 +05:30
|
|
|
|
include fastcgi_params;
|
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
|
fastcgi_param SERVER_NAME $host;
|
|
|
|
|
fastcgi_param REQUEST_URI $request_url;
|
|
|
|
|
try_files $uri =404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# html файлы идут отдельно, для них будет применяться E-Tag кэширование
|
|
|
|
|
location ~* \.html$ {
|
|
|
|
|
root $frontend_path;
|
|
|
|
|
access_log off;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Раздача статики для frontend с указанием max-кэша. Сброс будет по #hash после ребилда webpackом
|
|
|
|
|
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|json|css|zip|rar|eot|ttf|woff|ico) {
|
|
|
|
|
root $frontend_path;
|
|
|
|
|
expires max;
|
|
|
|
|
access_log off;
|
|
|
|
|
}
|
|
|
|
|
}
|