Downloads:
144,541
Downloads of v 2.4.20.20160427:
1,946
Last Update:
27 Apr 2016
Package Maintainer(s):
Software Author(s):
- Apache Software Foundation
Tags:
apache httpd webserver admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Apache HTTP Server Project
This is not the latest version of Apache HTTP Server Project available.
- 1
- 2
- 3
2.4.20.20160427 | Updated: 27 Apr 2016
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
144,541
Downloads of v 2.4.20.20160427:
1,946
Maintainer(s):
Software Author(s):
- Apache Software Foundation
Apache HTTP Server Project 2.4.20.20160427
This is not the latest version of Apache HTTP Server Project available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Apache Software Foundation. The inclusion of Apache Software Foundation trademark(s), if any, upon this webpage is solely to identify Apache Software Foundation goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Apache HTTP Server Project, run the following command from the command line or from PowerShell:
To upgrade Apache HTTP Server Project, run the following command from the command line or from PowerShell:
To uninstall Apache HTTP Server Project, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download apache-httpd --internalize --version=2.4.20.20160427 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade apache-httpd -y --source="'INTERNAL REPO URL'" --version="'2.4.20.20160427'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade apache-httpd -y --source="'INTERNAL REPO URL'" --version="'2.4.20.20160427'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install apache-httpd
win_chocolatey:
name: apache-httpd
version: '2.4.20.20160427'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'apache-httpd' do
action :install
source 'INTERNAL REPO URL'
version '2.4.20.20160427'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller apache-httpd
{
Name = "apache-httpd"
Version = "2.4.20.20160427"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'apache-httpd':
ensure => '2.4.20.20160427',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator doc on 27 Apr 2016.
Apache HTTP Web Server for Windows.
Note
This package will unzip the latest windows binary provided at Apache Haus (http://www.apachehaus.com/) with OpenSSL on Visual Studio 2012 (VC11):
with OpenSSL 1.0.2g, nghttp 1.9.2, Zlib 1.2.8 (mod_deflate), PCRE 8.38, APR 1.5.2, APR-Util 1.5.4, IPv6 and TLS SNI enabled
The complete path of the package will be ''%unzipLocation%\Apache24'' (default: C:\tools\Apache\httpd-2.4.20\Apache24).
A service with a given name is created with the default config location.
This package needs either a Java Runtime to run. The package has no dependencies to a java runtime to give a choice to install JRE, JDK or Server JRE.
Parameters
The following package parameters can be set:
/unzipLocation
- Unzip to a different destination folder. Default: C:\tools\Apache\httpd-2.4.20/serviceName
- The name of the windows service which will be create. Default: Apache
These parameters can be passed to the installer with the use of -packageParameters
.
For example: choco install apache-httpd -packageParameters '"/unzipLocation:C:\tools\Server /serviceName:Apache"'
.
Install
if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }
$optionsFile = (Join-Path $PSScriptRoot 'options.xml')
if (!(Test-Path $optionsFile)) {
throw "Install options file missing. Could not uninstall."
}
$options = Import-CliXml -Path $optionsFile
$unzipLocation = $options['unzipLocation']
$serviceName = $options['serviceName']
$apacheHome = Join-Path $unzipLocation "Apache24";
Write-Debug "Uninstalling $apacheHome"
$service = Get-Service | ? Name -eq $serviceName
if ($service -ne $null) {
Stop-Service $service
}
$binPath = Join-Path $apacheHome 'bin'
Write-Debug "Uninstalling Service $binPath : $serviceName"
if (Test-Path $binPath) {
Push-Location $binPath
Start-ChocolateyProcessAsAdmin ".\httpd.exe -k uninstall -n '$($serviceName)'"
Pop-Location
}
Remove-Item $unzipLocation -Recurse -Force
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Apache HTTP Server Project 2.4.55 | 44277 | Friday, February 24, 2023 | Approved | |
Apache HTTP Server Project 2.4.54 | 31027 | Tuesday, July 5, 2022 | Approved | |
Apache HTTP Server Project 2.4.53 | 6841 | Wednesday, March 16, 2022 | Approved | |
Apache HTTP Server Project 2.4.52 | 4744 | Monday, December 20, 2021 | Approved | |
Apache HTTP Server Project 2.4.51 | 3657 | Saturday, October 9, 2021 | Approved | |
Apache HTTP Server Project 2.4.50 | 371 | Tuesday, October 5, 2021 | Approved | |
Apache HTTP Server Project 2.4.49 | 1073 | Friday, September 17, 2021 | Approved | |
Apache HTTP Server Project 2.4.48 | 5418 | Wednesday, May 26, 2021 | Approved | |
Apache HTTP Server Project 2.4.47 | 1199 | Thursday, April 29, 2021 | Approved | |
Apache HTTP Server Project 2.4.46 | 7665 | Monday, August 17, 2020 | Approved | |
Apache HTTP Server Project 2.4.43 | 5489 | Wednesday, April 1, 2020 | Approved | |
Apache HTTP Server Project 2.4.41 | 4720 | Tuesday, August 13, 2019 | Approved | |
Apache HTTP Server Project 2.4.39 | 2935 | Sunday, March 31, 2019 | Approved | |
Apache HTTP Server Project 2.4.38 | 1756 | Monday, January 21, 2019 | Approved | |
Apache HTTP Server Project 2.4.37 | 3120 | Monday, October 22, 2018 | Approved | |
Apache HTTP Server Project 2.4.35 | 863 | Friday, September 21, 2018 | Approved | |
Apache HTTP Server Project 2.4.34 | 1296 | Saturday, July 14, 2018 | Approved | |
Apache HTTP Server Project 2.4.33.20180409 | 1698 | Monday, April 9, 2018 | Approved | |
Apache HTTP Server Project 2.4.33 | 737 | Thursday, March 22, 2018 | Approved | |
Apache HTTP Server Project 2.4.32 | 522 | Wednesday, March 14, 2018 | Approved | |
Apache HTTP Server Project 2.4.29 | 6173 | Saturday, November 4, 2017 | Approved | |
Apache HTTP Server Project 2.4.28.20171020 | 787 | Friday, October 20, 2017 | Approved | |
Apache HTTP Server Project 2.4.28 | 697 | Friday, October 6, 2017 | Approved | |
Apache HTTP Server Project 2.4.27 | 1618 | Monday, July 10, 2017 | Approved | |
Apache HTTP Server Project 2.4.26.20170623 | 552 | Friday, June 23, 2017 | Approved | |
Apache HTTP Server Project 2.4.26 | 582 | Saturday, June 17, 2017 | Approved | |
Apache HTTP Server Project 2.4.25 | 795 | Thursday, June 8, 2017 | Approved | |
Apache HTTP Server Project 2.4.20.20160427 | 1946 | Wednesday, April 27, 2016 | Approved | |
Apache HTTP Server Project 2.4.20 | 671 | Tuesday, April 12, 2016 | Approved | |
Apache HTTP Server Project 2.4.18 | 1312 | Tuesday, March 29, 2016 | Approved |
-
- vcredist2012 (≥ 11.0.61030)
Ground Rules:
- This discussion is only about Apache HTTP Server Project and the Apache HTTP Server Project package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Apache HTTP Server Project, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.