Skip to content

Commit

Permalink
Change paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryba1986 committed Nov 25, 2023
1 parent f754dc0 commit e228f51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion contrib/nginx/phoenix.example.com.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ server {
ssl_certificate /etc/letsencrypt/live/phoenix.example.com/fullchain.pem;

location / {
alias /var/www/Phoenix.Web/;
alias /var/www/phoenix.web/;
index index.html;
try_files $uri $uri/ /index.html;
}
Expand Down
8 changes: 4 additions & 4 deletions scripts/Publish.Linux.Arm64.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
dotnet publish "./src/Phoenix.Api.Client/Phoenix.Api.Client.csproj" -o "./dist/arm/phoenix.api.client" -c Release -r linux-arm64
dotnet publish "./src/Phoenix.Api.Web/Phoenix.Api.Web.csproj" -o "./dist/arm/phoenix.api.web" -c Release -r linux-arm64
dotnet publish "./src/Phoenix.Client/Phoenix.Client.csproj" -o "./dist/arm/phoenix.client" -c Release -r linux-arm64
dotnet publish "./src/Phoenix.Api.Client/Phoenix.Api.Client.csproj" -o "./dist/linux/arm64/phoenix.api.client" -c Release -r linux-arm64
dotnet publish "./src/Phoenix.Api.Web/Phoenix.Api.Web.csproj" -o "./dist/linux/arm64/phoenix.api.web" -c Release -r linux-arm64
dotnet publish "./src/Phoenix.Client/Phoenix.Client.csproj" -o "./dist/linux/arm64/phoenix.client" -c Release -r linux-arm64

Set-Location "./src/Phoenix.Web"
Set-Location "./src/phoenix.web"
yarn install
yarn build
Set-Location "../../"
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
dotnet publish "./src/Phoenix.Api.Client/Phoenix.Api.Client.csproj" -o "./dist/linux/Phoenix.Api.Client" -c Release -r linux-x64
dotnet publish "./src/Phoenix.Api.Web/Phoenix.Api.Web.csproj" -o "./dist/linux/Phoenix.Api.Web" -c Release -r linux-x64
dotnet publish "./src/Phoenix.Client/Phoenix.Client.csproj" -o "./dist/linux/Phoenix.Client" -c Release -r linux-x64
dotnet publish "./src/Phoenix.Api.Client/Phoenix.Api.Client.csproj" -o "./dist/linux/amd64/phoenix.api.client" -c Release -r linux-x64
dotnet publish "./src/Phoenix.Api.Web/Phoenix.Api.Web.csproj" -o "./dist/linux/amd64/phoenix.api.web" -c Release -r linux-x64
dotnet publish "./src/Phoenix.Client/Phoenix.Client.csproj" -o "./dist/linux/amd64/phoenix.client" -c Release -r linux-x64

Set-Location "./src/Phoenix.Web"
Set-Location "./src/phoenix.web"
yarn install
yarn build
Set-Location "../../"

0 comments on commit e228f51

Please sign in to comment.