Edit file /home/gitlab/gitlab/config/unicorn.rb
Find line listen "#{app_dir}/tmp/sockets/gitlab.socket" and comment it.
Uncomment line listen "127.0.0.1:8080"
sudo a2enmod proxysudo a2enmod proxy_balancer
Sometimes when working with Git you'd like to commit binary files.
But those files won't have clean comparisons with Git standard diff command.
Fortunately Git is a great tool that comes with a lot of possibilities…
If, as a developer, you are under company constraints and must use MS Office,
you'll encounter some issues when trying to diff MS Office files.
Maybe you're asking yourself: what's the problem with that?
| { | |
| "type": "object", | |
| "title": "", | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "properties": { | |
| "photo": { | |
| "type": "array", | |
| "items": { | |
| "$ref": "#/definitions/photo" | |
| }, |
| if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2015") { | |
| cmd.exe /c "call `"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd`" /x64 && call `"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat`" x86_amd64 && set > %temp%\vcvars.txt" | |
| } else { | |
| cmd.exe /c "call `"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat`" && set > %temp%\vcvars.txt" | |
| } | |
| Get-Content "$env:temp\vcvars.txt" | Foreach-Object { | |
| if ($_ -match "^(.*?)=(.*)$") { | |
| Set-Content "env:\$($matches[1])" $matches[2] | |
| } |