Skip to content

Commit abb9c3b

Browse files
committed
use port 80, not 8080; clean up .gitmodules; add python service log file to .gitignore
1 parent e2f5c65 commit abb9c3b

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ docroot/wp-content/upgrade/*
1010
docroot/wp-content/uploads/*
1111
docroot/sitemap.*
1212
docroot/wp-config-local.php
13+
python_env/paste_errors.log

.gitmodules

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1-
[submodule "WordPress"]
2-
path = WordPress
3-
url = https://github.com/WordPress/WordPress.git
4-
[submodule "wordpress"]
1+
[submodule "docroot/wordpress"]
52
path = docroot/wordpress
63
url = https://github.com/WordPress/WordPress.git
7-
[submodule "legalcode"]
4+
[submodule "docroot/legalcode"]
85
path = docroot/legalcode
96
url = https://github.com/creativecommons/legalcode.git
10-
[submodule "license.rdf"]
7+
[submodule "docroot/license.rdf"]
118
path = docroot/license.rdf
129
url = https://github.com/creativecommons/license.rdf.git
13-
[submodule "includes/i18n"]
10+
[submodule "docroot/includes/i18n"]
1411
path = docroot/includes/i18n
1512
url = https://github.com/creativecommons/svn-i18n
16-
[submodule "wp-content/themes/creativecommons.org"]
13+
[submodule "docroot/wp-content/themes/creativecommons.org"]
1714
path = docroot/wp-content/themes/creativecommons.org
1815
url = https://github.com/creativecommons/theme-creativecommons.org.git
1916
[submodule "python_env/src/i18n"]

scripts/bootstrap_server_ubuntu.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ else
3636
fi
3737

3838
cat <<EOF > /etc/apache2/sites-available/${HOSTNAME}
39-
<VirtualHost ${HOSTNAME}:8080>
39+
<VirtualHost ${HOSTNAME}:80>
4040
Use CCVHost ${HOSTNAME} http ${TOPDIR} /var/log/apache2/${HOSTNAME}
4141
</VirtualHost>
4242
EOF

0 commit comments

Comments
 (0)