drafted vuejs client container

This commit is contained in:
2019-07-19 12:24:13 +02:00
parent e37f86bfa2
commit d4150a38ca
8 changed files with 51 additions and 47 deletions
-5
View File
@@ -1,5 +0,0 @@
FROM nginx:latest
COPY ./default.conf /etc/nginx/conf.d/default.conf
COPY ./bashrc /root/.bashrc
COPY ./inputrc /root/.inputrc
-3
View File
@@ -1,3 +0,0 @@
PS1='\e[36m\e[1mNGINX\e[0m:\e[90m\w\e[0m\n$ '
bind '"\e[A": history-search-backward'
bind '"\e[B": history-search-forward'
-25
View File
@@ -1,25 +0,0 @@
server {
listen 80 default_server;
root /var/www/html/dist;
index index.html;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log on;
error_log /var/log/nginx/error.log error;
sendfile off;
client_max_body_size 100m;
location ~ /\.ht {
deny all;
}
}
-2
View File
@@ -1,2 +0,0 @@
set show-all-if-ambiguous on
set completion-ignore-case on