Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b394804c5 | ||
|
|
8ea1aca7a3 |
@@ -81,7 +81,7 @@ services:
|
|||||||
- gluetun
|
- gluetun
|
||||||
|
|
||||||
gluetun:
|
gluetun:
|
||||||
image: qmcgaw/gluetun:v3.40.1
|
image: qmcgaw/gluetun:v3.41.3
|
||||||
container_name: gluetun
|
container_name: gluetun
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
mem_limit: 4g
|
mem_limit: 4g
|
||||||
@@ -150,7 +150,7 @@ Press `i` to edit and enter:
|
|||||||
```toml
|
```toml
|
||||||
[[roles]]
|
[[roles]]
|
||||||
name = "t-anc/GSP-Qbittorent-Gluetun-sync-port-mod"
|
name = "t-anc/GSP-Qbittorent-Gluetun-sync-port-mod"
|
||||||
routes = ["GET /v1/openvpn/portforwarded"]
|
routes = ["GET /v1/portforward"]
|
||||||
auth = "apikey"
|
auth = "apikey"
|
||||||
apikey = "your_key_here" # key you just generated
|
apikey = "your_key_here" # key you just generated
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
export default defineNuxtPlugin(() => {
|
||||||
|
const route = useRoute()
|
||||||
|
const canonicalUrl = withSiteUrl(computed(() => route.path), { canonical: true })
|
||||||
|
|
||||||
|
useHead({
|
||||||
|
link: [
|
||||||
|
{ rel: 'canonical', href: canonicalUrl }
|
||||||
|
],
|
||||||
|
meta: [
|
||||||
|
{ property: 'og:url', content: canonicalUrl }
|
||||||
|
]
|
||||||
|
})
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user