Compare commits
2
Commits
3529834d95
...
3b394804c5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b394804c5 | ||
|
|
8ea1aca7a3 |
@@ -81,7 +81,7 @@ services:
|
||||
- gluetun
|
||||
|
||||
gluetun:
|
||||
image: qmcgaw/gluetun:v3.40.1
|
||||
image: qmcgaw/gluetun:v3.41.3
|
||||
container_name: gluetun
|
||||
restart: unless-stopped
|
||||
mem_limit: 4g
|
||||
@@ -150,7 +150,7 @@ Press `i` to edit and enter:
|
||||
```toml
|
||||
[[roles]]
|
||||
name = "t-anc/GSP-Qbittorent-Gluetun-sync-port-mod"
|
||||
routes = ["GET /v1/openvpn/portforwarded"]
|
||||
routes = ["GET /v1/portforward"]
|
||||
auth = "apikey"
|
||||
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