Complete the code to set the Jenkins URL in the configuration file.
JENKINS_URL=[1]The Jenkins URL must include the full protocol and port, like http://localhost:8080/.
Complete the command to restart Jenkins service after changing the URL.
sudo systemctl [1] jenkinsUse restart to apply changes by stopping and starting Jenkins.
Fix the error in the Jenkins security configuration to enable CSRF protection.
jenkins.security.csrf.[1]=trueThe correct property to enable CSRF protection is jenkins.security.csrf.enable=true.
Fill both blanks to configure Jenkins to use HTTPS with a certificate and key.
jenkins.security.https.[1]=[2]
The keyStore property points to the keystore file path for HTTPS.
Fill all three blanks to set Jenkins security realm, authorization strategy, and enable security.
jenkins.security.realm=[1] jenkins.security.authorizationStrategy=[2] jenkins.security.[3]=true
Set the security realm to LDAP, authorization to full control once logged in, and enable security.