Skip to content

Commit

Permalink
Change domain to wikiweaver.stuffontheinter.net
Browse files Browse the repository at this point in the history
  • Loading branch information
l0f3n committed Jan 27, 2024
1 parent ef65be7 commit 994a2e1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WikiWeaver makes participating in and especially spectating WikiRaces a lot more

Creating and joining lobbies is super simple.

The host goes to [stuffontheinter.net](https://stuffontheinter.net) to create and view a lobby.
The host goes to the [WikiWeaver webiste](https://wikiweaver.stuffontheinter.net/) to create and view a lobby.

All players then join this lobby using the [Firefox addon](https://addons.mozilla.org/en-US/firefox/addon/wikiweaver/). All players that have successfully joined the lobby will be shown in the leaderboard in the bottom right.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
web:
build: ./wikiweaver-web
ports:
- 443:443
- 4243:443
volumes:
- /etc/letsencrypt/live/stuffontheinter.net/fullchain.pem:/fullchain.pem
- /etc/letsencrypt/live/stuffontheinter.net/privkey.pem:/privkey.pem
Expand Down
2 changes: 1 addition & 1 deletion wikiweaver-ext/firefox/background.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const domain = "https://stuffontheinter.net"; // Use this for production
const domain = "https://wikiweaver.stuffontheinter.net"; // Use this for production
// const domain = "http://localhost:4242"; // Use this for local development

chrome.webNavigation.onCommitted.addListener(
Expand Down
6 changes: 3 additions & 3 deletions wikiweaver-ext/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<body>
<div class="flex-vertical-container">
<div id="title" class="text">WikiWeaver</div>
<div id="explanation-text" class="text"> Go to
<a href="https://stuffontheinter.net/">stuffontheinter.net</a>
<div id="explanation-text" class="text"> Go to the
<a href="https://wikiweaver.stuffontheinter.net/">WikiWeaver website</a>
to create a lobby and enter that code here to join it
</div>
<div id="connected-text" class="text" hidden>Connected to lobby</div>
Expand All @@ -21,4 +21,4 @@
</div>
</body>

</html>
</html>
2 changes: 1 addition & 1 deletion wikiweaver-web/js/networking.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const domain = "wss://stuffontheinter.net"; // Use this for production
const domain = "wss://wikiweaver.stuffontheinter.net"; // Use this for production
// const domain = "ws://localhost:4242"; // Use this for local development

const pingInterval = 30000; // milliseconds
Expand Down
8 changes: 1 addition & 7 deletions wikiweaver-web/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,9 @@ upstream api {
server server:4242;
}

server {
listen 80;
server_name stuffontheinter.net www.stuffontheinter.net
return 301 https://stuffontheinter.net$request_uri;
}

server {
listen 443 ssl;
server_name stuffontheinter.net;
server_name wikiweaver.stuffontheinter.net;
ssl_certificate /fullchain.pem;
ssl_certificate_key /privkey.pem;

Expand Down

0 comments on commit 994a2e1

Please sign in to comment.