Attempt to get the Wii U to connect to nginx directly

It doesn't work for some reason, even though TLSv1.0 is enabled in nginx.
This commit is contained in:
Matthew Lopez
2023-12-22 20:45:33 -05:00
parent 6c532e4059
commit 3948c01fb4
15 changed files with 94 additions and 34 deletions

View File

@@ -11,7 +11,7 @@ async function runAsync() {
"Friend List",
"0003200",
["0005001010001C00"],
process.env.COMPUTER_IP,
process.env.SERVER_IP,
process.env.FRIENDS_PORT,
"dev",
1,
@@ -29,7 +29,7 @@ async function runAsync() {
"Wii U Chat",
"1005A000",
["000500101005A100"],
process.env.COMPUTER_IP,
process.env.SERVER_IP,
process.env.WIIU_CHAT_PORT,
"dev",
1,

View File

@@ -73,11 +73,11 @@ echo "PN_MIIVERSE_API_CONFIG_AES_KEY=$miiverse_aes_key" >>./miiverse-api.local.e
echo "JUXT_CONFIG_AES_KEY=$miiverse_aes_key" >>./juxtaposition-ui.local.env
# Get the computer IP address
printf "What is your computer's IP address? It must be accessible to your consoles: "
read -r computer_ip
echo "COMPUTER_IP=$computer_ip" >>./system.local.env
echo "PN_FRIENDS_SECURE_SERVER_HOST=$computer_ip" >>./friends.local.env
echo "PN_WIIU_CHAT_SECURE_SERVER_LOCATION=$computer_ip" >>./wiiu-chat.local.env
printf "What is your server's IP address? It must be accessible to your consoles: "
read -r server_ip
echo "SERVER_IP=$server_ip" >>./system.local.env
echo "PN_FRIENDS_SECURE_SERVER_HOST=$server_ip" >>./friends.local.env
echo "PN_WIIU_CHAT_SECURE_SERVER_LOCATION=$server_ip" >>./wiiu-chat.local.env
# Get the Wii U IP address
printf "Enter your Wii U's IP address: "

View File

@@ -21,7 +21,7 @@ done
docker compose up -d account
docker compose exec -e COMPUTER_IP="$COMPUTER_IP" \
docker compose exec -e SERVER_IP="$SERVER_IP" \
-e FRIENDS_PORT="$PN_FRIENDS_AUTHENTICATION_SERVER_PORT" \
-e FRIENDS_AES_KEY="$PN_FRIENDS_CONFIG_AES_KEY" \
-e MIIVERSE_AES_KEY="$PN_MIIVERSE_API_CONFIG_AES_KEY" \