aboutsummaryrefslogtreecommitdiffstats
path: root/.gitattributes
blob: 3185c448bfc88a58d5a14be37d4076a1ed668928 (plain)
1
2
3
4
* text=auto eol=lf
*.png binary
*.jpg binary
*.xlsx binary
stributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. logDir="/var/log/onap/vfc/gvnfm-vnfmgr/" if [ ! -x $logDir ]; then mkdir -p $logDir fi # nohup python manage.py runserver 0.0.0.0:8803 > /dev/null & if [ "${SSL_ENABLED}" = "true" ]; then nohup uwsgi --https :8803,mgr/pub/ssl/cert/foobar.crt,mgr/pub/ssl/cert/foobar.key, -t 120 --enable-threads --module mgr.wsgi --master --processes 4 & else nohup uwsgi --http :8803 -t 120 --enable-threads --module mgr.wsgi --master --processes 4 & fi