Fixing bugs

This commit is contained in:
Tara Wilson 2024-12-11 15:37:51 -05:00
parent f50d01678e
commit 5b7375ae57
3 changed files with 22 additions and 13 deletions

View File

@ -2,3 +2,4 @@ FROM nginx:latest
COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY dist/ticket-ui /usr/share/nginx/html COPY dist/ticket-ui /usr/share/nginx/html
EXPOSE 80 EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

View File

@ -17,7 +17,10 @@
"build": { "build": {
"builder": "@angular-devkit/build-angular:application", "builder": "@angular-devkit/build-angular:application",
"options": { "options": {
"outputPath": "dist/ticket-ui", "outputPath": {
"base": "dist/ticket-ui",
"browser": ""
},
"index": "src/index.html", "index": "src/index.html",
"browser": "src/main.ts", "browser": "src/main.ts",
"polyfills": [ "polyfills": [

View File

@ -1,16 +1,21 @@
server { server {
listen 80; listen 0.0.0.0:8080;
server_name localhost; listen [::]:8080;
default_type application/octet-stream;
gzip on;
gzip_comp_level 6;
gzip_vary on;
gzip_min_length 1000;
gzip_proxied any;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_buffers 16 8k;
gunzip on;
client_max_body_size 256M;
root /usr/share/nginx/html;
location / { location / {
root /usr/share/nginx/html; try_files $uri $uri/ /index.html =404;
try_files $uri $uri/ /index.html;
index index.html index.htm;
} }
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
} }