1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-23 07:20:55 +03:00

Merge branch 'boulder-debug-server-8080' into gitignore

This commit is contained in:
Jakub Warmuz
2015-07-17 08:45:39 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -48,9 +48,9 @@ http {
server {
# IPv4.
listen 8080;
listen 8081;
# IPv6.
listen [::]:8080 default ipv6only=on;
listen [::]:8081 default ipv6only=on;
root $root/webroot;

View File

@@ -6,7 +6,7 @@
export PATH="/usr/sbin:$PATH" # /usr/sbin/nginx
nginx_root="$root/nginx"
mkdir $nginx_root
root="$nginx_root" ./tests/integration/nginx.conf.sh > $nginx_root/nginx.conf
root="$nginx_root" ./letsencrypt-nginx/tests/boulder-integration.conf.sh > $nginx_root/nginx.conf
killall nginx || true
nginx -c $nginx_root/nginx.conf

View File

@@ -55,5 +55,5 @@ done
if type nginx;
then
. ./tests/integration/nginx.sh
. ./letsencrypt-nginx/tests/boulder-integration.sh
fi