Hello viewers, in this video I show you how to create a macvlan to be used with our Nextcloud docker container. Will be performing the install on the Docker compose plugin available on openmediavault.
*Link to setup omv from beginning and setting up appdata folder*
• New 2024 openmediavault getting started, o...
*Link to my GitHub where you can find the nextcloud.yml file*
(docker compose / Nextcloud)
https://github.com/robexplainstech/ho...
*View my channel*
/ @robexplainstech
****Parameters used on the video are below:
.../appdata/nextcloud/config/www/nextcloud/config/config.php
'default_phone_region' => 'US',
'memcache.local' => '\\OC\\Memcache\\APCu',
'maintenance_window_start' => 1,
****Strict Transport Security
.../appdata/nextcloud/config/nginx/site-confs/default.conf
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
****Redirect nextcloud to HTTPS
server {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
0:00 What is nextcloud?
0:35 My OMV setup / environment
1:37 Nextcloud container deployment
2:10 Macvlan creation
5:16 Explaining the compose file
12:12 Accessing nextcloud and initial setup
13:39 Recommended app and slowness issue
15:36 Bonus content fixing administration settings
19:02 Get rid of vim visual to help copying
21:26 config.php adding parameters
21:59 Strict-Transport-Security