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
package main | |
import ( | |
"github.com/ChimeraCoder/anaconda" | |
"os" | |
"fmt" | |
"strings" | |
"net/url" | |
) |
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
<VirtualHost address.domain:443> | |
ServerName address.domain | |
SSLEngine on | |
SSLProxyEngine on | |
RequestHeader set X_FORWARDED_PROTO 'https' | |
SSLCertificateFile /etc/apache2/conf/server.crt | |
SSLCertificateKeyFile /etc/apache2/conf/server.key | |
ErrorLog "/var/log/apache2/gitlab_error.log" | |
TransferLog "/var/log/apache2/gitlab_access.log" | |
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
# -*- coding: utf-8 -*- | |
from logging import getLogger, StreamHandler, FileHandler | |
from logging import INFO, DEBUG, WARNING, ERROR, CRITICAL | |
from logging import Formatter | |
level = {'INFO': INFO, | |
'DEBUG': DEBUG, | |
'WARNING': WARNING, | |
'ERROR': ERROR, | |
'CRITICAL': CRITICAL, |
NewerOlder