Compare commits

...

9 Commits

Author SHA1 Message Date
a98b05f14b Delete source/ticketAPI/api/appsettings.json 2024-12-11 22:26:47 -05:00
903e562e42 Delete source/ticketAPI/api/appsettings.Development.json 2024-12-11 22:26:39 -05:00
Tara Wilson
50efe0f310 2024.12.11 2024-12-11 15:42:31 -05:00
Tara Wilson
9478b89a11 Fixing nginx bug 2024-12-11 15:40:31 -05:00
Tara Wilson
5b7375ae57 Fixing bugs 2024-12-11 15:37:51 -05:00
Tara Wilson
f50d01678e Fixing UI Startup bug 2024-12-11 15:23:31 -05:00
Tara Wilson
f19ab2e6da Fixing UI bug 2024-12-11 15:15:01 -05:00
Tara Wilson
653428fccb Fixing UI startup bug 2024-12-11 14:57:54 -05:00
Tara Wilson
8609dca7dc Fixing api startup bug 2024-12-11 14:52:55 -05:00
7 changed files with 25 additions and 41 deletions

View File

@ -2,4 +2,4 @@
COPY artifacts /app COPY artifacts /app
WORKDIR /app WORKDIR /app
EXPOSE 80 EXPOSE 80
ENTRYPOINT ["dotnet", "follicleAPI.dll"] ENTRYPOINT ["dotnet", "api.dll"]

View File

@ -1,12 +0,0 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Mongo": {
"ConnectionString": "mongodb://terralilly85:pr1ncessN0ra@www.taraformed.com:27017/",
"Database": "pso"
}
}

View File

@ -1,13 +0,0 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Mongo": {
"ConnectionString": "mongodb://terralilly85:pr1ncessN0ra@www.taraformed.com:27017/",
"Database": "pso"
},
"AllowedHosts": "*"
}

View File

@ -1,4 +1,5 @@
FROM nginx:latest FROM nginx:latest
COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY dist /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:80;
server_name localhost; listen [::]:80;
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;
}
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "ticket-ui", "name": "ticket-ui",
"version": "0.0.0", "version": "2024.12.11",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve",