You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ChangeLog.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,10 +23,13 @@ Improvements:
23
23
* Cleaned up JavaScript event listeners [GH-120]
24
24
* Vagrant now uses Ansible for configuration instead of a bash script [GH-111]
25
25
* Updated the Python packages to the latest versions [GH-135]
26
+
* Apache logs for PostMaster now default to /opt/postmaster/logs
26
27
27
28
Bug Fixes:
28
29
29
30
* Fixed an issue where error logs were attempting to be written before the log file path was defined [GH-109]
31
+
* The configuration file, config.py, is now named as config.default.py in the repository. During installation, the administrator must now copy or rename config.default.py to config.py.
32
+
This is so that config.py is not overwritten during package upgrades.
28. At this point, PostMaster requires an IIS site. You can either use the "Default Web Site" and change the virtual directory to C:\PostMaster\git,
137
141
or create a new site that points to that directory. This tutorial will use the Default Web Site. To change the virtual directory, use the following commands:
138
142
139
143
Import-Module WebAdministration
140
144
Set-ItemProperty 'IIS:\Sites\Default Web Site\' -Name physicalPath -Value "$env:SystemDrive\PostMaster\git"
141
145
142
-
28. Now, IIS needs to know how to run PostMaster. The following commands configure FastCGI to be able to use the Python virtual environment created earlier and run PostMaster
146
+
29. Now, IIS needs to know how to run PostMaster. The following commands configure FastCGI to be able to use the Python virtual environment created earlier and run PostMaster
143
147
(If you are using a site other than "Default Web Site", change that value in the commands below):
144
148
145
149
Import-Module WebAdministration
@@ -149,41 +153,36 @@ or create a new site that points to that directory. This tutorial will use the D
149
153
Add-WebConfiguration -Filter "/system.webServer/fastCgi/application[@fullPath='$env:SystemDrive\PostMaster\env\Scripts\python.exe' and @arguments='$env:SystemDrive\PostMaster\git\wfastcgi.py']/environmentVariables" -Value @{name='PYTHONPATH'; value="$env:SystemDrive\PostMaster\git"} -AtIndex 0
150
154
Add-WebConfiguration -Filter "/system.webServer/fastCgi/application[@fullPath='$env:SystemDrive\PostMaster\env\Scripts\python.exe' and @arguments='$env:SystemDrive\PostMaster\git\wfastcgi.py']/environmentVariables" -Value @{name='WSGI_HANDLER'; value='app.app'} -AtIndex 1
151
155
152
-
29. PostMaster needs to be configured to connect to the MySQL database using the MySQL user created in step 2 of MySQL Preparation.
156
+
30. PostMaster needs to be configured to connect to the MySQL database using the MySQL user created in step 2 of MySQL Preparation.
153
157
Make sure to replace "password_changeme" and "127.0.0.1' with the actual values supplied in step 2 of MySQL Preparation, and if needed,
154
158
replace '127.0.0.1' with the IP address or DNS specified in step 2 of MySQL Preparation:
0 commit comments