This file contains 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
#!/bin/bash | |
apt-get update | |
apt-get upgrade | |
apt-get -y install apt-transport-https ca-certificates wget curl gnupg-agent software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
apt-key fingerprint 0EBFCD88 | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - | |
add-apt-repository "deb https://pkg.jenkins.io/debian-stable binary/" |
This file contains 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
[code language="Batch"] | |
@echo OFF | |
::################################################### | |
::NOTE:- This script can with in month Range only # | |
::################################################### | |
::------------------------------------------------------ | |
::SET Today=%Date:~10,4%-%Date:~4,2%-%Date:~7,2% | |
:: ^ ^ ^ ^ ^ | |
:: | | | | | |
This file contains 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 *:80> | |
ServerAdmin prasad_rahul@yahoo.co.in | |
Alias /bugzilla/ /var/www/bugzilla/ | |
<Directory "/var/www/bugzilla"> | |
AddHandler cgi-script .cgi .pl | |
DirectoryIndex index.cgi | |
Options +Indexes +ExecCGI -MultiViews +SymLinksIfOwnerMatch +FollowSymLinks |
This file contains 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
# You may add here your | |
server { | |
#listen 80; ## listen for ipv4; this line is default and implied | |
#listen [::]:80 default ipv6only=on; ## listen for ipv6 | |
# Make site accessible from http://localhost/ | |
server_name localhost; | |
root /var/www/bugzilla; | |
index index.html index.htm index.cgi index.pl; |