Skip to content

Commit 41b3545

Browse files
authored
update to ddev domain (#18)
1 parent af8f7c8 commit 41b3545

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
shell: bash
2020

2121
env:
22-
NIGHTLY_DDEV_PR_URL: "https://nightly.link/drud/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
22+
NIGHTLY_DDEV_PR_URL: "https://nightly.link/ddev/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
2323
# Allow ddev get to use a github token to prevent rate limiting by tests
2424
DDEV_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
jobs:
@@ -50,15 +50,15 @@ jobs:
5050
5151
- name: Use ddev stable
5252
if: matrix.ddev_version == 'stable'
53-
run: brew install drud/ddev/ddev
53+
run: brew install ddev/ddev/ddev
5454

5555
- name: Use ddev edge
5656
if: matrix.ddev_version == 'edge'
57-
run: brew install drud/ddev-edge/ddev
57+
run: brew install ddev/ddev-edge/ddev
5858

5959
- name: Use ddev HEAD
6060
if: matrix.ddev_version == 'HEAD'
61-
run: brew install --HEAD drud/ddev/ddev
61+
run: brew install --HEAD ddev/ddev/ddev
6262

6363
- name: Use ddev PR
6464
if: matrix.ddev_version == 'PR'
@@ -68,7 +68,7 @@ jobs:
6868
mv ddev /usr/local/bin/ddev && chmod +x /usr/local/bin/ddev
6969
7070
- name: Download docker images
71-
run: |
71+
run: |
7272
mkdir junk && pushd junk && ddev config --omit-containers=dba,db && ddev debug download-images >/dev/null
7373
- name: tmate debugging session
7474
uses: mxschmitt/action-tmate@v3

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
[![tests](https://github.com/drud/ddev-varnish/actions/workflows/tests.yml/badge.svg)](https://github.com/drud/ddev-varnish/actions/workflows/tests.yml) ![project is maintained](https://img.shields.io/maintenance/yes/2024.svg)
1+
[![tests](https://github.com/ddev/ddev-varnish/actions/workflows/tests.yml/badge.svg)](https://github.com/ddev/ddev-varnish/actions/workflows/tests.yml) ![project is maintained](https://img.shields.io/maintenance/yes/2024.svg)
22

33
# ddev-varnish
44

5-
This repository allows you to quickly install the Varnish reverse proxy into a [DDEV](https://ddev.readthedocs.io) project using just `ddev get drud/ddev-varnish`.
5+
This repository allows you to quickly install the Varnish reverse proxy into a [DDEV](https://ddev.readthedocs.io) project using just `ddev get ddev/ddev-varnish`.
66

77
## Installation
88

9-
1. `ddev get drud/ddev-varnish`
9+
1. `ddev get ddev/ddev-varnish`
1010
2. `ddev restart`
1111

1212
## Explanation
1313

1414
The Varnish service inserts itself between ddev-router and the web container, so that calls
15-
to the web container are routed through Varnish first. The [docker-compose.varnish.yaml](https://github.com/drud/ddev-contrib/blob/master/docker-compose-services/varnish/docker-compose.varnish.yml)
15+
to the web container are routed through Varnish first. The [docker-compose.varnish.yaml](https://github.com/ddev/ddev-contrib/blob/master/docker-compose-services/varnish/docker-compose.varnish.yml)
1616
installs Varnish and uses the default domain as its own host name. A docker-compose.varnish-extras.yaml file is generated on install which replaces the ```VIRTUAL_HOST``` variable of the web container with a sub-domain of the website URL. For example, mysite.ddev.site, would be accessible via Varnish on mysite.ddev.site and directly on novarnish.mysite.ddev.site.
1717

1818
If you use a project_tld other than ddev.site or additional_fqdns DDEV will help add hosts entries for the hostnames automagically; however, you'll need to add entries for the novarnish.* sub-domains yourself, e.g. `ddev hostname novarnish.testaddfqdn.random.tld 127.0.0.1`.
1919

20-
Run `ddev get drud/ddev-varnish` after changes to name, additional_hostnames, additional_fqdns, or project_tld in .ddev/config.yml so that .ddev/docker-compose.varnish-extras.yaml is regenerated.
20+
Run `ddev get ddev/ddev-varnish` after changes to name, additional_hostnames, additional_fqdns, or project_tld in .ddev/config.yml so that .ddev/docker-compose.varnish-extras.yaml is regenerated.
2121

2222
## Helper commands
2323

@@ -41,4 +41,4 @@ See [The Varnish Reference Manual](https://varnish-cache.org/docs/6.5/reference/
4141

4242
**Maintained by [@jedebois](https://github.com/jedubois) and [@rfay](https://github.com/rfay)**
4343

44-
**Based on the original [ddev-contrib recipe](https://github.com/drud/ddev-contrib/tree/master/docker-compose-services/varnish) pioneered by [rikwillems](https://github.com/rikwillems)**
44+
**Based on the original [ddev-contrib recipe](https://github.com/ddev/ddev-contrib/tree/master/docker-compose-services/varnish) pioneered by [rikwillems](https://github.com/rikwillems)**

tests/test.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ teardown() {
4545
@test "install from release" {
4646
set -eu -o pipefail
4747
cd ${TESTDIR} || ( printf "unable to cd to ${TESTDIR}\n" && exit 1 )
48-
echo "# ddev get drud/ddev-varnish with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
49-
ddev get drud/ddev-varnish >/dev/null
48+
echo "# ddev get ddev/ddev-varnish with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
49+
ddev get ddev/ddev-varnish >/dev/null
5050
ddev restart >/dev/null 2>&1
5151
for url in http://${PROJNAME}.ddev.site/ http://extrahostname.ddev.site/ http://extrafqdn.ddev.site/ https://${PROJNAME}.ddev.site/ https://extrahostname.ddev.site/ https://extrafqdn.ddev.site/ ; do
5252
# It's "Via:" with http and "via:" with https. Tell me why.

0 commit comments

Comments
 (0)