Skip to content

Commit

Permalink
Merge pull request #15 from OlofBlomqvist/loadbalancing
Browse files Browse the repository at this point in the history
Loadbalancing
  • Loading branch information
OlofBlomqvist authored Sep 2, 2024
2 parents 3fa66aa + 2495fc5 commit 91dd81a
Show file tree
Hide file tree
Showing 46 changed files with 5,404 additions and 3,673 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build_artifacts_without_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,16 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly


- name: Install NASM
if: startsWith(matrix.os, 'windows')
uses: ilammy/setup-nasm@v1

- name: Configure NASM for CMake (Windows only)
if: startsWith(matrix.os, 'windows')
run: |
$env:CMAKE_ASM_NASM_COMPILER = "nasm"
- name: Build
run: |
if ("${{ matrix.no_default_features }}" -eq "true") {
Expand All @@ -65,7 +74,6 @@ jobs:
}
shell: pwsh


- name: Rename Artifact
run: mv ${{ matrix.artifact_path }} ${{ matrix.artifact_name }}

Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"kind": "bin"
}
},
"args": ["C:/Users/oblink/Documents/visit/odd-box.toml","-p","80","-t","443"],
"args": ["odd-box-example-config.toml"],
"cwd": "${workspaceFolder}"
}
]
Expand Down
9 changes: 9 additions & 0 deletions CaddyTest1
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
log {
level DEBUG
output stdout
}
}
:9999 {
respond "pong"
}
9 changes: 9 additions & 0 deletions CaddyTest2
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
log {
level DEBUG
output stdout
}
}
:8888 {
respond "pong"
}
Loading

0 comments on commit 91dd81a

Please sign in to comment.