This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Apply the configuration for 'azure', just with the generic type... | |
knpu_oauth2_client: | |
clients: | |
azure_ad: | |
# https://github.com/knpuniversity/oauth2-client-bundle#configuring-a-generic-provider | |
# We need to use the generic type instead of 'azure', so we can pass some extra options | |
type: generic | |
provider_class: TheNetworg\OAuth2\Client\Provider\Azure | |
client_class: KnpU\OAuth2ClientBundle\Client\Provider\AzureClient | |
# -- normal options -- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
openvpn: | |
image: kylemanna/openvpn | |
volumes: | |
- "./data:/etc/openvpn" | |
- "/etc/localtime:/etc/localtime:ro" | |
ports: | |
- "1194:1194/udp" | |
expose: |