Skip to content
View antoniocampos's full-sized avatar
🙈
🙈

Block or report antoniocampos

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. .net Core Systemd Service Example (L... .net Core Systemd Service Example (Linux autostart you .net app)
    1
    [Unit]
    2
    Description=MyService Description
    3
    
                  
    4
    [Service]
    5
    WorkingDirectory=/path/to/app/
  2. Fail2Ban DROP instead REJECT Fail2Ban DROP instead REJECT
    1
    #Depending on version one of the following files must exist
    2
    
                  
    3
    root@host:/ nano /etc/fail2ban/action.d/iptables-blocktype.conf
    4
    
                  
    5
    or 
  3. Solve OpenVPN 2.4 Error = CRL has ex... Solve OpenVPN 2.4 Error = CRL has expired
    1
    #OpenVPN 2.4 no longer accepts CRLs who's nextUpdate field lies in the past.
    2
    #
    4
    # no need for any change at the client side
    5
    # you may want to increase the CRL EXPIRE period
  4. Redirect all requests to PHP Redirect all requests to PHP
    1
    RewriteEngine on
    2
    RewriteCond %{REQUEST_FILENAME} !-f
    3
    RewriteCond %{REQUEST_FILENAME} !-d
    4
    RewriteRule ^(.*)$ /index.php?ParaMeter=$1 [NC,L,QSA]
  5. .htaccess force www. .htaccess force www.
    1
    RewriteEngine on
    2
    RewriteCond %{HTTP_HOST} ^antoniocampos.net [NC]
    3
    RewriteRule ^(.*)$ http://www.antoniocampos.net/$1 [L,R=301,NC]
  6. Debian 10 install and configure Micr... Debian 10 install and configure Microsoft SQL Server 2019 and tools
    1
    apt install curl apt-transport-https gnupg
    2
    curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
    3
    curl https://packages.microsoft.com/config/debian/10/prod.list | tee /etc/apt/sources.list.d/msprod.list
    4
    curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list | tee /etc/apt/sources.list.d/msprod.list
    5
    apt-get update