Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Vagrant.configure(2) do |config|

ansible.groups = {
"webproxies" => ["sr-proxy"],
"competitorsvcs" => ["sr-competitorsvc"],
"competitorsvcs" => ["sr-competitorsvcs"],
"competitionsvcs" => ["sr-competitionsvcs"],
}
end
Expand Down
2 changes: 1 addition & 1 deletion host_vars/sr-competitorsvcs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# This is a dev VM created by Vagrant.

canonical_hostname: sr-competitorsvc
canonical_hostname: sr-competitorsvcs
secondary_hostnames:
# See explanation in host_vars/competitorsvcs.studentrobotics.org.yml for why
# we include the proxy hostname here.
Expand Down
4 changes: 2 additions & 2 deletions roles/competitor-services-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ services. Currently this is just the [Code Submitter](../code-submitter/README.m

1. Follow the [general instructions](../../README.md) for ansible development.

2. Visit <https://sr-competitorsvc> in a browser (approve the self-signed local TLS
2. Visit <https://sr-competitorsvcs> in a browser (approve the self-signed local TLS
certificate if needed), and confirm that you see a copy of the SR website
(also check that you didn't get redirect to the real one!)

3. Make your changes to [`templates/nginx.conf`](templates/nginx.conf)

4. Reprovision the VM, thus deploying the changes: `vagrant provision sr-competitorsvc`
4. Reprovision the VM, thus deploying the changes: `vagrant provision sr-competitorsvcs`

5. Refresh your browser and bask in the glory of your changes

Expand Down