Skip to content
View nicholascourage's full-sized avatar
☀️
In Dorset
☀️
In Dorset
  • Dorset, UK
  • 00:22 (UTC +01:00)

Block or report nicholascourage

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. LaravelNuxt - nginx.conf LaravelNuxt - nginx.conf
    1
    server {
    2
        listen 80;
    3
        listen 443 ssl;
    4
        index index.php index.html;
    5
        server_name laravel-nuxt.local;
  2. aws_code_deploy_agent.sh aws_code_deploy_agent.sh
    1
    #!/bin/bash -xe
    2
    
                  
    3
    ## Code Deploy Agent Bootstrap Script##
    4
    
                  
    5
    
                  
  3. Laravel Nuxt docker-compose.yml Laravel Nuxt docker-compose.yml
    1
    version: '3'
    2
    
                  
    3
    networks:
    4
        laravel-nuxt:
    5
    
                  
  4. LaravelNuxt - Nginx Dockerfile LaravelNuxt - Nginx Dockerfile
    1
    FROM nginx:latest
    2
    
                  
    3
    WORKDIR /var/www/html
    4
    
                  
    5
    RUN chown -R www-data:www-data /var/www/html